Cart.php
353 字节
<?php
namespace app\api\model;
use think\Model;
class Cart extends Model
{
protected $createTime = 'createtime';
protected $updateTime = '';
public function goods()
{
return $this->belongsTo('Goods','goods_id','id');
}
public function sku()
{
return $this->belongsTo('GoodsSpec','sku_id','id');
}
}