NoticeReadModel.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. namespace App\Models\Deed;
  3. use App\Models\Model;
  4. /**
  5. * App\Models\Deed\NoticeReadModel
  6. *
  7. * @property int $id
  8. * @property int $uid
  9. * @property int $unread_cnt 未读次数
  10. * @property \Illuminate\Support\Carbon $created_at 创建时间
  11. * @property \Illuminate\Support\Carbon $updated_at 修改时间
  12. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Deed\NoticeReadModel newModelQuery()
  13. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Deed\NoticeReadModel newQuery()
  14. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Deed\NoticeReadModel query()
  15. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Deed\NoticeReadModel whereCreatedAt($value)
  16. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Deed\NoticeReadModel whereId($value)
  17. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Deed\NoticeReadModel whereUid($value)
  18. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Deed\NoticeReadModel whereUnreadCnt($value)
  19. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Deed\NoticeReadModel whereUpdatedAt($value)
  20. * @mixin \Eloquent
  21. */
  22. class NoticeReadModel extends Model
  23. {
  24. protected $table = 'kdgx_fpdx_deed_notice_read';
  25. public $dateFormat = 'U';
  26. protected $fillable = ['uid', 'unread_cnt'];
  27. }