20 lines
620 B
PHP
Executable File
20 lines
620 B
PHP
Executable File
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 宏驰云科技开发团队 版权所有 拥有最终解释权
|
|
// +----------------------------------------------------------------------
|
|
|
|
// | Author: HcyShop-kiki
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace app\api\model;
|
|
|
|
use think\Model;
|
|
|
|
class AfterSale extends Model
|
|
{
|
|
public function orderGoods()
|
|
{
|
|
return $this->hasOne('order_goods','id','order_goods_id')
|
|
->field('id,goods_id,item_id,total_pay_price,goods_num,goods_price,goods_info,total_price');
|
|
}
|
|
} |