12345678910111213141516171819202122232425 |
- <?php
- namespace app\admin\model\lottery;
- use think\Model;
- class RedbagLog extends Model
- {
-
- // 表名
- protected $name = 'lottery_redbag_log';
-
- // 自动写入时间戳字段
- protected $autoWriteTimestamp = 'integer';
- // 定义时间戳字段名
- protected $createTime = 'createtime';
- }
|