| 12345678910111213141516171819202122232425262728293031323334 | <?phpnamespace addons\unishop\model;use think\Model;/** * Class Cart 购物车 * @package addons\unishop\model */class Cart extends Model{    // 表名    protected $name = 'unishop_cart';    // 开启自动写入时间戳字段    protected $autoWriteTimestamp = 'int';    // 定义时间戳字段名    protected $createTime = 'createtime';    protected $updateTime = 'updatetime';    //是否选中    const CHOOSE_ON = 1; // 是    const CHOOSE_OFF = 0; // 否    /**     * 关联产品     */    public function product(){        return $this->hasOne('product', 'id', 'product_id');    }}
 |