NoticeReadModel.php 1.4 KB

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. namespace App\Models\Fpdx;
  3. use App\Models\Model;
  4. /**
  5. * App\Models\Fpdx\NoticeReadModel
  6. *
  7. * @property int $id 主键
  8. * @property \Illuminate\Support\Carbon $created_at 创建时间
  9. * @property \Illuminate\Support\Carbon|null $updated_at 更新时间
  10. * @property int $notice_id 公告id
  11. * @property int $uid 用户id
  12. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\NoticeReadModel newModelQuery()
  13. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\NoticeReadModel newQuery()
  14. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\NoticeReadModel query()
  15. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\NoticeReadModel whereCreatedAt($value)
  16. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\NoticeReadModel whereId($value)
  17. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\NoticeReadModel whereNoticeId($value)
  18. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\NoticeReadModel whereUid($value)
  19. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\NoticeReadModel whereUpdatedAt($value)
  20. * @mixin \Eloquent
  21. */
  22. class NoticeReadModel extends Model
  23. {
  24. protected $table = "kdgx_fpdx_room_notice_read";
  25. protected $dateFormat = 'U';
  26. protected $fillable = ['id', 'notice_id', 'uid'];
  27. }