1:创建模型 2:定义关联模型 <?php namespace app\common\model; use think\Model; use traits\model\SoftDelete; class TypeModel extends Model { use SoftDelete; //链接pyg商品类型表 protected $table = 'pyg_type';// 进行和规格模型关联,1对多 public function spec() { return $this->hasMan…