ContinuousTimes.php 769 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. namespace App\Module\System\Models;
  3. use UCore\ModelCore;
  4. /**
  5. * 连续次数判定
  6. *
  7. * field start
  8. * @property int $id 主键id
  9. * @property int $user_id 用户id
  10. * @property string $stype 产品类型
  11. * @property int $sid 产品id
  12. * @property int $number 计数
  13. * @property int $last_time 最后的时间
  14. * @property \Carbon\Carbon $created_at
  15. * @property \Carbon\Carbon $updated_at
  16. * @property \Carbon\Carbon $deleted_at
  17. * @property int $diff
  18. * field end
  19. *
  20. */
  21. class ContinuousTimes extends \UCore\ModelCore
  22. {
  23. // attrlist start
  24. protected $fillable = [
  25. 'id',
  26. 'user_id',
  27. 'stype',
  28. 'sid',
  29. 'number',
  30. 'last_time',
  31. 'diff',
  32. ];
  33. // attrlist end
  34. }