www_fpvone_cn/application/admin/model/CombineViews.php

23 lines
424 B
PHP
Raw Normal View History

2024-12-20 12:29:51 +08:00
<?php
namespace app\admin\model;
use think\Model;
/**
* 购物车模型
*/
class CombineViews extends Model
{
// 表名,不含前缀
protected $name = 'combine_views';
protected $autoWriteTimestamp = 'int';
// 定义时间戳字段名
protected $createTime = 'createtime';
protected $updateTime = 'updatetime';
// use SoftDelete;
// protected $deleteTime = 'deletetime';
}