GoodsCategoryModel.php 867 字节
<?php
// +----------------------------------------------------------------------
// | bronet [ 以客户为中心 以奋斗者为本 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2013-2017 http://www.bronet.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: 老猫 <bronet@126.com>
// +----------------------------------------------------------------------
namespace app\portal\model;

use think\Model;
use traits\model\SoftDelete;
class GoodsCategoryModel extends Model
{
    protected $pk='id';
    use SoftDelete;
    // 设置当前模型对应的完整数据表名称
    //protected $table = 'mt_goods_category';
}