商城模块
This commit is contained in:
16
Yi.Framework.Net6/Yi.Framework.Model/SpecsGroupEntity.cs
Normal file
16
Yi.Framework.Net6/Yi.Framework.Model/SpecsGroupEntity.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text.Json.Serialization;
|
||||
using SqlSugar;
|
||||
namespace Yi.Framework.Model.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// 商品规格组表
|
||||
///</summary>
|
||||
public partial class SpecsGroupEntity:IBaseModelEntity
|
||||
{
|
||||
[Navigate(NavigateType.OneToMany, nameof(SpecsEntity.SpecsGroupId))]
|
||||
public List<SpecsEntity> Specses { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user