64 lines
1.2 KiB
PHP
64 lines
1.2 KiB
PHP
<?php
|
||
/**
|
||
* 时间:2023年03月02日
|
||
* 作者:墨楠小
|
||
* 邮箱:monanxiao@qq.com
|
||
* 订单模型
|
||
*
|
||
*/
|
||
namespace app\admin\model;
|
||
|
||
use think\Model;
|
||
|
||
class StoreOrder extends Model
|
||
{
|
||
// 设置当前模型的数据库连接
|
||
protected $connection = 'shop';
|
||
|
||
// 设置当前模型对应的完整数据表名称
|
||
protected $table = 'eb_store_order';
|
||
protected $pk = 'order_id';
|
||
|
||
/**
|
||
* 所属商户
|
||
* 一对一
|
||
*
|
||
*/
|
||
public function merchant()
|
||
{
|
||
return $this->hasOne(Merchant::class, 'mer_id', 'mer_id');
|
||
}
|
||
|
||
/**
|
||
* 所属商品
|
||
*
|
||
*/
|
||
public function cart()
|
||
{
|
||
return $this->hasOne(StoreCart::class, 'cart_id', 'cart_id');
|
||
}
|
||
|
||
/**
|
||
* 获取购物车商品
|
||
*
|
||
*/
|
||
public function getCartIdAttr($value)
|
||
{
|
||
// 分割为数组
|
||
$cartId = explode(',', $value);
|
||
// 购物车ID
|
||
$scartList = StoreCart::whereIn('cart_id', $cartId)->with(['product'])->select();
|
||
|
||
return $scartList;
|
||
}
|
||
|
||
/**
|
||
*
|
||
* 所属用户
|
||
*
|
||
*/
|
||
public function user()
|
||
{
|
||
return $this->hasOne(Merchant::class, 'mer_id', 'mer_id');
|
||
}
|
||
} |