60 lines
1.2 KiB
PHP
60 lines
1.2 KiB
PHP
<?php
|
||
/**
|
||
* 时间:2023年03月02日
|
||
* 作者:墨楠小
|
||
* 邮箱:monanxiao@qq.com
|
||
* 供应链团队模型
|
||
*
|
||
*/
|
||
namespace app\admin\model;
|
||
|
||
use think\Model;
|
||
|
||
class SupplyChain extends Model
|
||
{
|
||
// 设置当前模型的数据库连接
|
||
protected $connection = 'mysql';
|
||
|
||
// 设置当前模型对应的完整数据表名称
|
||
protected $table = 'fa_supply_chain';
|
||
|
||
/**
|
||
* 关联拥有多个商户
|
||
* 远程一对多
|
||
* 关联模型、中间模型
|
||
*/
|
||
public function merchant()
|
||
{
|
||
return $this->hasManyThrough(Merchant::class, SupplyChainLinkMerchant::class, 'fa_supply_chain_id', 'mer_id', 'id', 'eb_merchant_id');
|
||
}
|
||
|
||
/**
|
||
*
|
||
* 关联中间表
|
||
*
|
||
*/
|
||
public function linkMerchant()
|
||
{
|
||
return $this->hasMany(SupplyChainLinkMerchant::class, 'fa_supply_chain_id');
|
||
}
|
||
|
||
/**
|
||
* 关联街道
|
||
*
|
||
*
|
||
*/
|
||
public function street()
|
||
{
|
||
return $this->hasOne(GeoStreet::class, 'street_id', 'street_id');
|
||
}
|
||
|
||
/**
|
||
* 关联区县
|
||
*
|
||
*
|
||
*/
|
||
public function area()
|
||
{
|
||
return $this->hasOne(GeoArea::class, 'area_id', 'area_id');
|
||
}
|
||
} |