PartnerCheckNoticeModel.php 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. namespace App\Models\Log;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * App\Models\Log\PartnerCheckNoticeModel
  6. *
  7. * @property int $id
  8. * @property int $uid uid
  9. * @property int $partner_id 卡片ID
  10. * @property string $field 字段
  11. * @property int $check 是否审核通过
  12. * @property int $new 是否新卡片
  13. * @property int $notice 是否通知
  14. * @property int $read_at 阅读时间
  15. * @property \Illuminate\Support\Carbon $created_at 创建时间
  16. * @property \Illuminate\Support\Carbon $updated_at 修改时间
  17. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\PartnerCheckNoticeModel newModelQuery()
  18. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\PartnerCheckNoticeModel newQuery()
  19. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\PartnerCheckNoticeModel query()
  20. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\PartnerCheckNoticeModel whereCheck($value)
  21. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\PartnerCheckNoticeModel whereCreatedAt($value)
  22. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\PartnerCheckNoticeModel whereField($value)
  23. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\PartnerCheckNoticeModel whereId($value)
  24. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\PartnerCheckNoticeModel whereNew($value)
  25. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\PartnerCheckNoticeModel whereNotice($value)
  26. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\PartnerCheckNoticeModel wherePartnerId($value)
  27. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\PartnerCheckNoticeModel whereReadAt($value)
  28. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\PartnerCheckNoticeModel whereUid($value)
  29. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\PartnerCheckNoticeModel whereUpdatedAt($value)
  30. * @mixin \Eloquent
  31. */
  32. class PartnerCheckNoticeModel extends Model
  33. {
  34. //
  35. protected $table = 'kdgx_fpdx_partner_notice_logs';
  36. protected $dateFormat = 'U';
  37. public $fillable = ['uid', 'partner_id', 'field', 'check', 'notice', 'read_at', 'new'];
  38. }