DataFeedLogModel.php 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <?php
  2. namespace App\Models\Log;
  3. use App\Models\Model;
  4. /**
  5. * App\Models\Log\DataFeedLogModel
  6. *
  7. * @property int $id
  8. * @property \Illuminate\Support\Carbon|null $created_at 上报时间
  9. * @property string|null $created_date 上报日期
  10. * @property int $uid 滑动id
  11. * @property int $partner_id 卡片id
  12. * @property int $type 卡片类型
  13. * @property int $photo_num 照片数量
  14. * @property int $voice 是否有语音
  15. * @property int $remind 是否提醒补全
  16. * @property int $retention_time 提留时间:秒
  17. * @property int $like 是否喜欢
  18. * @property string|null $feed_dis
  19. * @property string|null $partner_dis
  20. * @property string|null $page
  21. * @property string|null $app
  22. * @property int|null $score
  23. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\DataFeedLogModel newModelQuery()
  24. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\DataFeedLogModel newQuery()
  25. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\DataFeedLogModel query()
  26. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\DataFeedLogModel whereApp($value)
  27. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\DataFeedLogModel whereCreatedAt($value)
  28. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\DataFeedLogModel whereCreatedDate($value)
  29. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\DataFeedLogModel whereFeedDis($value)
  30. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\DataFeedLogModel whereId($value)
  31. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\DataFeedLogModel whereLike($value)
  32. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\DataFeedLogModel wherePage($value)
  33. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\DataFeedLogModel wherePartnerDis($value)
  34. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\DataFeedLogModel wherePartnerId($value)
  35. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\DataFeedLogModel wherePhotoNum($value)
  36. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\DataFeedLogModel whereRemind($value)
  37. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\DataFeedLogModel whereRetentionTime($value)
  38. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\DataFeedLogModel whereScore($value)
  39. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\DataFeedLogModel whereType($value)
  40. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\DataFeedLogModel whereUid($value)
  41. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\DataFeedLogModel whereVoice($value)
  42. * @mixin \Eloquent
  43. */
  44. class DataFeedLogModel extends Model
  45. {
  46. protected $connection = "mysql_datalog";
  47. protected $table = "data_feed_log";
  48. public const UPDATED_AT = null;
  49. protected $fillable = array(
  50. 'id',
  51. 'created_at',
  52. 'created_date',
  53. 'uid',
  54. 'partner_id',
  55. 'type',
  56. 'photo_num',
  57. 'voice',
  58. 'remind',
  59. 'retention_time',
  60. 'like',
  61. 'feed_dis',
  62. 'partner_dis',
  63. 'page',
  64. 'app',
  65. 'score',
  66. 'by_feed',
  67. 'belong_feed',
  68. 'algorithm_score',
  69. 'user_level',
  70. 'partner_level',
  71. 'each_like'
  72. );
  73. }