26 lines
611 B
PHP
Executable File
26 lines
611 B
PHP
Executable File
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 宏驰云科技开发团队 版权所有 拥有最终解释权
|
|
// +----------------------------------------------------------------------
|
|
|
|
// | Author: HcyShop-kiki
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace app\api\model;
|
|
|
|
use think\Model;
|
|
|
|
class Cart extends Model
|
|
{
|
|
protected $name = 'cart';
|
|
|
|
const IS_SELECTED = 1;//选中
|
|
const NO_SELECTED = 0;//未选中
|
|
|
|
|
|
public function goods()
|
|
{
|
|
return $this->hasOne('Goods', 'goods_id', 'goods_id');
|
|
}
|
|
|
|
} |