UserSysTagModel.php 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?php
  2. namespace App\Models\User;
  3. use App\Models\Model;
  4. /**
  5. * App\Models\User\UserSysTagModel
  6. *
  7. * @property int $uid
  8. * @property int $supvip_days 开通超级会员的天数
  9. * @property int $last_be_supvip_at 最近开通时间
  10. * @property int $supvip_endat 会员到期时间
  11. * @property int $notice_send_cnt 累计发送通知次数
  12. * @property int $last_send_notice_at 上次发送通知的时间
  13. * @property int $last_supvip_expire_notice_at 上次超级会员过期发送通知时间
  14. * @property int $after_notice_less_h_into_cnt 发送通知后60分钟内登陆的次数
  15. * @property int $popularity_flower_end_at 小fa加成人气值的到期时间
  16. * @property int $popularity_share_end_at 分享助力加成人气值的到期时间
  17. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\UserSysTagModel newModelQuery()
  18. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\UserSysTagModel newQuery()
  19. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\UserSysTagModel query()
  20. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\UserSysTagModel whereAfterNoticeLessHIntoCnt($value)
  21. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\UserSysTagModel whereLastBeSupvipAt($value)
  22. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\UserSysTagModel whereLastSendNoticeAt($value)
  23. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\UserSysTagModel whereLastSupvipExpireNoticeAt($value)
  24. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\UserSysTagModel whereNoticeSendCnt($value)
  25. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\UserSysTagModel wherePopularityFlowerEndAt($value)
  26. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\UserSysTagModel wherePopularityShareEndAt($value)
  27. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\UserSysTagModel whereSupvipDays($value)
  28. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\UserSysTagModel whereSupvipEndat($value)
  29. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\UserSysTagModel whereUid($value)
  30. * @mixin \Eloquent
  31. */
  32. class UserSysTagModel extends Model
  33. {
  34. protected $table = "kdgx_fpdx_user_systag";
  35. protected $primaryKey = 'uid';
  36. protected $dateFormat = 'U';
  37. public $timestamps = false;
  38. protected $fillable = [
  39. 'uid',
  40. 'supvip_days',
  41. 'last_be_supvip_at',
  42. 'supvip_endat',
  43. 'notice_send_cnt',
  44. 'last_send_notice_at',
  45. 'after_notice_less_h_into_cnt',
  46. 'popularity_flower_end_at',
  47. 'popularity_share_end_at'
  48. ];
  49. }