You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
407 B
24 lines
407 B
<?php
|
|
|
|
namespace app\common\model;
|
|
|
|
/**
|
|
* 商品规格关系模型
|
|
* Class GoodsSpecRel
|
|
* @package app\common\model
|
|
*/
|
|
class GoodsSpecRel extends BaseModel
|
|
{
|
|
protected $name = 'goods_spec_rel';
|
|
protected $updateTime = false;
|
|
|
|
/**
|
|
* 关联规格组
|
|
* @return \think\model\relation\BelongsTo
|
|
*/
|
|
public function spec()
|
|
{
|
|
return $this->belongsTo('Spec');
|
|
}
|
|
|
|
}
|
|
|