32 lines
623 B
PHP
32 lines
623 B
PHP
<?php
|
||
/**
|
||
* 时间:2023年03月06日
|
||
* 作者:墨楠小
|
||
* 邮箱:monanxiao@qq.com
|
||
* 商品品牌列表模型
|
||
*
|
||
*/
|
||
namespace app\admin\model;
|
||
|
||
use think\Model;
|
||
|
||
class StoreBrand extends Model
|
||
{
|
||
|
||
// 设置当前模型的数据库连接
|
||
protected $connection = 'shop';
|
||
|
||
// 设置当前模型对应的完整数据表名称
|
||
protected $table = 'eb_store_brand';
|
||
|
||
protected $pk = 'brand_id';
|
||
|
||
/**
|
||
* 关联品牌分类
|
||
*/
|
||
public function storeBrandCategory()
|
||
{
|
||
|
||
return $this->hasOne(StoreBrandCategory::class, 'store_brand_category_id', 'brand_category_id');
|
||
}
|
||
} |