GoodsKeywordsHot.php
548 字节
<?php
namespace addons\shopro\model;
use think\Model;
use traits\model\SoftDelete;
/**
* 商品热门搜索
*/
class GoodsKeywordsHot extends Model
{
use SoftDelete;
// 表名,不含前缀
protected $name = 'shopro_goods_keywords_hot';
// 自动写入时间戳字段
protected $autoWriteTimestamp = 'int';
// 定义时间戳字段名
protected $createTime = 'createtime';
protected $updateTime = 'updatetime';
protected $deleteTime = 'deletetime';
// 追加属性
protected $append = [
];
}