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.
23 lines
371 B
23 lines
371 B
<?php
|
|
|
|
namespace app\common\model;
|
|
|
|
/**
|
|
* 商品SKU模型
|
|
* Class GoodsSku
|
|
* @package app\common\model
|
|
*/
|
|
class GoodsSku extends BaseModel
|
|
{
|
|
protected $name = 'goods_sku';
|
|
|
|
/**
|
|
* 规格图片
|
|
* @return \think\model\relation\HasOne
|
|
*/
|
|
public function image()
|
|
{
|
|
return $this->hasOne('uploadFile', 'file_id', 'image_id');
|
|
}
|
|
|
|
}
|
|
|