FeedType4RemindModel.php 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. namespace App\Models\User;
  3. use App\Models\Model;
  4. /**
  5. * App\Models\User\FeedType4RemindModel
  6. *
  7. * @property int $id
  8. * @property int $uid 提醒用户
  9. * @property int $is_remind_uid 被提醒用户
  10. * @property \Illuminate\Support\Carbon $created_at 提醒时间
  11. * @property int $is_update_feedback_at 是否补全后反馈(反馈时间)
  12. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\FeedType4RemindModel newModelQuery()
  13. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\FeedType4RemindModel newQuery()
  14. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\FeedType4RemindModel query()
  15. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\FeedType4RemindModel whereCreatedAt($value)
  16. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\FeedType4RemindModel whereId($value)
  17. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\FeedType4RemindModel whereIsRemindUid($value)
  18. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\FeedType4RemindModel whereIsUpdateFeedbackAt($value)
  19. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\FeedType4RemindModel whereUid($value)
  20. * @mixin \Eloquent
  21. */
  22. class FeedType4RemindModel extends Model
  23. {
  24. protected $table = "kdgx_feed_type4_remind";
  25. public const UPDATED_AT = null;
  26. protected $fillable = [
  27. 'uid',
  28. 'is_remind_uid',
  29. 'type',
  30. 'is_update_feedback_at'
  31. ];
  32. public const STATE = [
  33. 1 => '信息流',
  34. 2 => '我喜欢的列表',
  35. 3 => '喜欢我的列表',
  36. ];
  37. }