12345678910111213141516171819 |
- <?php
- namespace app\common\model;
- use think\Model;
- class GoodsChannelRelHistory extends Model
- {
- // 表名
- protected $table = 'goods_channel_rel_history';
- // 自动写入时间戳字段
- protected $autoWriteTimestamp = 'int';
- // 定义时间戳字段名
- protected $createTime = 'createtime';
- }
|