FpdxCardStateListModel.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <?php
  2. namespace App\Models\Log;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * 卡片状态日志
  6. * Class FpdxCardStateListModel
  7. *
  8. * @package App\Models\Log
  9. * @property int $partner_id 卡片ID
  10. * @property int|null $uid 用户ID
  11. * @property int|null $sex 卡片性别
  12. * @property int|null $feed_push_type 推流类型:1,照片;2,语音;3,文本
  13. * @property int|null $is_sell 上架状态
  14. * @property int|null $hide_at 隐身时间
  15. * @property int|null $is_push_feed 是否可推信息流
  16. * @property int|null $push_fpdx 分配对象关注状态
  17. * @property int|null $push_syj 时遇记关注状态
  18. * @property int|null $is_mp_push 是否可推小程序
  19. * @property int|null $is_recommend 是否精选
  20. * @property int|null $base_score 人气值
  21. * @property \Illuminate\Support\Carbon|null $created_at 创建时间
  22. * @property \Illuminate\Support\Carbon|null $updated_at 更新时间
  23. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\FpdxCardStateListModel newModelQuery()
  24. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\FpdxCardStateListModel newQuery()
  25. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\FpdxCardStateListModel query()
  26. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\FpdxCardStateListModel whereBaseScore($value)
  27. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\FpdxCardStateListModel whereCreatedAt($value)
  28. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\FpdxCardStateListModel whereFeedPushType($value)
  29. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\FpdxCardStateListModel whereHideAt($value)
  30. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\FpdxCardStateListModel whereIsMpPush($value)
  31. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\FpdxCardStateListModel whereIsPushFeed($value)
  32. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\FpdxCardStateListModel whereIsRecommend($value)
  33. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\FpdxCardStateListModel whereIsSell($value)
  34. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\FpdxCardStateListModel wherePartnerId($value)
  35. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\FpdxCardStateListModel wherePushFpdx($value)
  36. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\FpdxCardStateListModel wherePushSyj($value)
  37. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\FpdxCardStateListModel whereSex($value)
  38. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\FpdxCardStateListModel whereUid($value)
  39. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\FpdxCardStateListModel whereUpdatedAt($value)
  40. * @mixin \Eloquent
  41. */
  42. class FpdxCardStateListModel extends Model
  43. {
  44. protected $table = "fpdx_card_state_list";
  45. protected $connection = "mysql_datalog";
  46. protected $dateFormat = 'U';
  47. protected $primaryKey = "partner_id";
  48. protected $fillable = array(
  49. 'partner_id',
  50. 'uid',
  51. 'sex',
  52. 'feed_push_type',
  53. 'is_sell',
  54. 'hide_at',
  55. 'is_push_feed',
  56. 'push_fpdx',
  57. 'push_syj',
  58. 'is_mp_push',
  59. 'is_recommend',
  60. 'base_score',
  61. 'created_at',
  62. 'updated_at'
  63. );
  64. }