This repository has been archived on 2024-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
yoshop/source/application/common/model/GoodsSpecRel.php
2020-04-25 22:20:29 +08:00

25 lines
407 B
PHP

<?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');
}
}