40 lines
742 B
PHP
40 lines
742 B
PHP
<?php
|
||
/**
|
||
* 时间:2023年03月02日
|
||
* 作者:墨楠小
|
||
* 邮箱:monanxiao@qq.com
|
||
* 购物车模型
|
||
*
|
||
*/
|
||
namespace app\admin\model;
|
||
|
||
use think\Model;
|
||
|
||
class StoreCart extends Model
|
||
{
|
||
// 设置当前模型的数据库连接
|
||
protected $connection = 'shop';
|
||
|
||
// 设置当前模型对应的完整数据表名称
|
||
protected $table = 'eb_store_cart';
|
||
protected $pk = 'cart_id';
|
||
|
||
/**
|
||
* 所属商品
|
||
*
|
||
*/
|
||
public function product()
|
||
{
|
||
return $this->hasOne(EbStoreProduct::class, 'product_id', 'product_id');
|
||
}
|
||
|
||
/**
|
||
*
|
||
* 所属用户
|
||
*
|
||
*/
|
||
public function user()
|
||
{
|
||
return $this->hasOne(Merchant::class, 'mer_id', 'mer_id');
|
||
}
|
||
} |