using Newtonsoft.Json; using OfficeOpenXml.Attributes; using SqlSugar; using System; using System.Collections.Generic; namespace ARW.Model.Vo.Api.GoodsManager.Goodss { /// /// 商品sku展示对象Api /// /// @author lwh /// @date 2023-07-13 /// public class GoosSkuApiVo { /// /// 描述 : 商品SkuId /// public int SkuId { get; set; } /// /// 描述 : 商品规格图片 /// public string SkuImage { get; set; } /// /// 描述 :商品规格详情 /// public List SpecInfo { get; set; } /// /// 描述 :商品sku价格 /// public List PriceInfo { get; set; } /// /// 描述 : 商品sku库存总量 /// public int Quantity { get; set; } /// /// 商品sku重量 /// public decimal Weight { get; set; } } public class SkuSpecInfo { public int SpecId { get; set; } public string SpecTitle { get; set; } public int SpecValueId { get; set; } public string SpecValue { get; set; } } public class PriceInfo { public int PriceType { get; set; } public decimal Price { get; set; } public string PriceTypeName { get; set; } } }