52 lines
994 B
PHP
52 lines
994 B
PHP
<?php
|
||
/**
|
||
* 时间:2023年03月02日
|
||
* 作者:墨楠小
|
||
* 邮箱:monanxiao@qq.com
|
||
* 商户模型
|
||
*
|
||
*/
|
||
namespace app\admin\model;
|
||
|
||
use think\Model;
|
||
|
||
class Merchant extends Model
|
||
{
|
||
// 设置当前模型的数据库连接
|
||
protected $connection = 'shop';
|
||
|
||
// 设置当前模型对应的完整数据表名称
|
||
protected $table = 'eb_merchant';
|
||
protected $pk = 'mer_id';
|
||
|
||
/**
|
||
* 所属供应链
|
||
* 远程一对一
|
||
*
|
||
*/
|
||
public function supplyChain()
|
||
{
|
||
return $this->hasOneThrough(SupplyChainLinkMerchant::class, SupplyChain::class);
|
||
}
|
||
|
||
/**
|
||
*
|
||
* 关联商户类型
|
||
*
|
||
*/
|
||
public function merchantType()
|
||
{
|
||
return $this->hasOne(MerchantType::class, 'mer_type_id', 'type_id');
|
||
}
|
||
|
||
/**
|
||
*
|
||
* 关联商户类别
|
||
*
|
||
*/
|
||
public function category()
|
||
{
|
||
return $this->hasOne(MerchantCategory::class, 'merchant_category_id', 'category_id');
|
||
}
|
||
|
||
} |