mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
Update ShopGoodsItem.php
This commit is contained in:
parent
1368f1e986
commit
7ad9baa59c
@ -3,6 +3,7 @@
|
||||
namespace app\data\model;
|
||||
|
||||
use think\admin\Model;
|
||||
use think\model\relation\HasMany;
|
||||
|
||||
/**
|
||||
* 商城商品规格模型
|
||||
@ -11,6 +12,16 @@ use think\admin\Model;
|
||||
*/
|
||||
class ShopGoodsItem extends Model
|
||||
{
|
||||
|
||||
/**
|
||||
* 关联商品规格
|
||||
* @return \think\model\relation\HasMany
|
||||
*/
|
||||
public function items(): HasMany
|
||||
{
|
||||
return $this->hasMany(ShopGoodsItem::class, 'goods_code', 'code');
|
||||
}
|
||||
|
||||
/**
|
||||
* 格式化创建时间
|
||||
* @param string $value
|
||||
|
Loading…
x
Reference in New Issue
Block a user