12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- namespace App\Models\User;
- use App\Models\Model;
- /**
- * App\Models\User\FeedType4RemindModel
- *
- * @property int $id
- * @property int $uid 提醒用户
- * @property int $is_remind_uid 被提醒用户
- * @property \Illuminate\Support\Carbon $created_at 提醒时间
- * @property int $is_update_feedback_at 是否补全后反馈(反馈时间)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\FeedType4RemindModel newModelQuery()
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\FeedType4RemindModel newQuery()
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\FeedType4RemindModel query()
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\FeedType4RemindModel whereCreatedAt($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\FeedType4RemindModel whereId($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\FeedType4RemindModel whereIsRemindUid($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\FeedType4RemindModel whereIsUpdateFeedbackAt($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\FeedType4RemindModel whereUid($value)
- * @mixin \Eloquent
- */
- class FeedType4RemindModel extends Model
- {
- protected $table = "kdgx_feed_type4_remind";
- public const UPDATED_AT = null;
- protected $fillable = [
- 'uid',
- 'is_remind_uid',
- 'type',
- 'is_update_feedback_at'
- ];
- public const STATE = [
- 1 => '信息流',
- 2 => '我喜欢的列表',
- 3 => '喜欢我的列表',
- ];
- }
|