namespace ZR.Mall.Model { /// /// 商品规格 /// [SugarTable("mms_product_spec", "商品规格")] [Tenant("1")] public class ProductSpec { /// /// Id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public long Id { get; set; } /// /// 商品ID /// public long ProductId { get; set; } /// /// 规格名称 /// [SugarColumn(ColumnName = "SpecName")] public string Name { get; set; } /// /// 规格值 /// [SugarColumn(IsJson = true)] public List SpecValues { get; set; } } }