GoodsSpecRel.php 500 字节
<?php


namespace app\api\model;


use think\Model;

class GoodsSpecRel extends Model
{
    // 自动写入时间戳字段
    protected $autoWriteTimestamp = 'int';
    protected $name = 'litestore_goods_spec_rel';
    protected $createTime = 'create_time';
    protected $updateTime = '';

    public function spec()
    {
        return $this->belongsTo('Spec','spec_id','id');
    }

    public function specvalue()
    {
        return $this->belongsTo('SpecValue','spec_value_id','id');
    }
}