2023-02-18 10:40:46 +08:00

35 lines
637 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* 时间2023年02月16日
* 作者:墨楠小
* 邮箱monanxiao@qq.com
* 区域负责人信息模型
*
*/
namespace app\api\model;
use think\Model;
class Area extends Model
{
// 设置当前模型对应的完整数据表名称
protected $table = 'cms_area';
/**
* 关联拥有区域负责人
* 一对多
*
*/
public function areaManager()
{
return $this->hasManyThrough(AreaManager::class);
}
/**
* 所属农贸市场
*
*/
public function FarmProductMarket(){
return $this->belongsTo(FarmProductMarket::class);
}
}