22 lines
446 B
PHP
22 lines
446 B
PHP
<?php
|
||
/**
|
||
* 时间:2023年03月04日
|
||
* 作者:墨楠小
|
||
* 邮箱:monanxiao@qq.com
|
||
* 商户分类模型
|
||
*
|
||
*/
|
||
namespace app\admin\model;
|
||
|
||
use think\Model;
|
||
|
||
class MerchantCategory extends Model
|
||
{
|
||
// 设置当前模型的数据库连接
|
||
protected $connection = 'shop';
|
||
|
||
// 设置当前模型对应的完整数据表名称
|
||
protected $table = 'eb_merchant_category';
|
||
protected $pk = 'merchant_category_id';
|
||
|
||
} |