31 lines
584 B
PHP
31 lines
584 B
PHP
<?php
|
||
/**
|
||
* 时间:2023年03月04日
|
||
* 作者:墨楠小
|
||
* 邮箱:monanxiao@qq.com
|
||
* 订单模型
|
||
*
|
||
*/
|
||
namespace app\admin\model;
|
||
|
||
use think\Model;
|
||
|
||
class EbStoreProduct extends Model
|
||
{
|
||
// 设置当前模型的数据库连接
|
||
protected $connection = 'shop';
|
||
|
||
// 设置当前模型对应的完整数据表名称
|
||
protected $table = 'eb_store_product';
|
||
protected $pk = 'product_id';
|
||
|
||
/**
|
||
*
|
||
* 关联商户
|
||
*
|
||
*/
|
||
public function merchant()
|
||
{
|
||
return $this->hasOne(Merchant::class, 'mer_id', 'mer_id');
|
||
}
|
||
} |