修改订单模型

This commit is contained in:
邹景立 2022-10-18 13:26:40 +08:00
parent 9bbe01a4b8
commit c10936ab9e
2 changed files with 26 additions and 1 deletions

View File

@ -3,6 +3,7 @@
namespace app\data\model;
use think\admin\Model;
use think\model\relation\HasMany;
/**
* 商城订单主模型
@ -11,5 +12,21 @@ use think\admin\Model;
*/
class ShopOrder extends Model
{
/**
* 关联订单商品
* @return \think\model\relation\HasMany
*/
public function items(): HasMany
{
return $this->hasMany('order_no', 'order_no')->where(['deleted' => 0]);
}
/**
* 关联物码数据
* @return \think\model\relation\HasMany
*/
public function sends(): HasMany
{
return $this->hasMany('order_no', 'order_no')->where(['deleted' => 0]);
}
}

View File

@ -3,6 +3,7 @@
namespace app\data\model;
use think\admin\Model;
use think\model\relation\HasOne;
/**
* 商城订单详情模型
@ -11,5 +12,12 @@ use think\admin\Model;
*/
class ShopOrderItem extends Model
{
/**
* 关联商品数据
* @return \think\model\relation\HasOne
*/
public function goods(): HasOne
{
return $this->hasOne(ShopGoods::class, 'code', 'goods_code');
}
}