1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
- namespace App\Models\User;
- use App\Models\Model;
- /**
- * App\Models\User\UserSysTagModel
- *
- * @property int $uid
- * @property int $supvip_days 开通超级会员的天数
- * @property int $last_be_supvip_at 最近开通时间
- * @property int $supvip_endat 会员到期时间
- * @property int $notice_send_cnt 累计发送通知次数
- * @property int $last_send_notice_at 上次发送通知的时间
- * @property int $last_supvip_expire_notice_at 上次超级会员过期发送通知时间
- * @property int $after_notice_less_h_into_cnt 发送通知后60分钟内登陆的次数
- * @property int $popularity_flower_end_at 小fa加成人气值的到期时间
- * @property int $popularity_share_end_at 分享助力加成人气值的到期时间
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\UserSysTagModel newModelQuery()
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\UserSysTagModel newQuery()
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\UserSysTagModel query()
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\UserSysTagModel whereAfterNoticeLessHIntoCnt($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\UserSysTagModel whereLastBeSupvipAt($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\UserSysTagModel whereLastSendNoticeAt($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\UserSysTagModel whereLastSupvipExpireNoticeAt($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\UserSysTagModel whereNoticeSendCnt($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\UserSysTagModel wherePopularityFlowerEndAt($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\UserSysTagModel wherePopularityShareEndAt($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\UserSysTagModel whereSupvipDays($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\UserSysTagModel whereSupvipEndat($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\UserSysTagModel whereUid($value)
- * @mixin \Eloquent
- */
- class UserSysTagModel extends Model
- {
- protected $table = "kdgx_fpdx_user_systag";
- protected $primaryKey = 'uid';
- protected $dateFormat = 'U';
- public $timestamps = false;
- protected $fillable = [
- 'uid',
- 'supvip_days',
- 'last_be_supvip_at',
- 'supvip_endat',
- 'notice_send_cnt',
- 'last_send_notice_at',
- 'after_notice_less_h_into_cnt',
- 'popularity_flower_end_at',
- 'popularity_share_end_at'
- ];
- }
|