| 12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace App\Module\System\Models;
- use UCore\ModelCore;
- /**
- * 连续次数判定
- *
- * field start
- * @property int $id 主键id
- * @property int $user_id 用户id
- * @property string $stype 产品类型
- * @property int $sid 产品id
- * @property int $number 计数
- * @property int $last_time 最后的时间
- * @property \Carbon\Carbon $created_at
- * @property \Carbon\Carbon $updated_at
- * @property \Carbon\Carbon $deleted_at
- * @property int $diff
- * field end
- *
- */
- class ContinuousTimes extends \UCore\ModelCore
- {
- // attrlist start
- protected $fillable = [
- 'id',
- 'user_id',
- 'stype',
- 'sid',
- 'number',
- 'last_time',
- 'diff',
- ];
- // attrlist end
- }
|