25 lines
459 B
PHP
25 lines
459 B
PHP
<?php
|
||
/**
|
||
* 时间:2023年02月17日
|
||
* 作者:墨楠小
|
||
* 邮箱:monanxiao@qq.com
|
||
* 农贸市场模型
|
||
*
|
||
*/
|
||
namespace app\api\model;
|
||
|
||
use think\Model;
|
||
|
||
class FarmProductMarket extends Model
|
||
{
|
||
// 设置当前模型对应的完整数据表名称
|
||
protected $table = 'cms_farm_product_market';
|
||
|
||
/**
|
||
* 所属拥有区域信息
|
||
*
|
||
*/
|
||
public function area(){
|
||
return $this->belongsTo(Area::class);
|
||
}
|
||
} |