using Newtonsoft.Json; using OfficeOpenXml.Attributes; using SqlSugar; using System; using System.Collections.Generic; namespace ARW.Model.Vo.Api.Custom.GoodsBrowsingHistorys { /// /// 商品浏览记录展示对象Api /// /// @author lwh /// @date 2023-10-22 /// public class GoodsBrowsingHistoryVoApi { /// /// 描述 :浏览时间 /// public string CraeteTime { get; set; } [JsonConverter(typeof(ValueToStringConverter))] public long GoodsGuid { get; set; } /// /// 描述 :商品guid /// [JsonConverter(typeof(ValueToStringConverter))] public long SpuId { get; set; } /// /// 描述 :商品名称 /// public string Title { get; set; } /// /// 描述 :商品封面 /// public string Thumb { get; set; } /// /// 描述 :收藏人数 /// public int CollectionNum { get; set; } /// /// 描述 :商品价格 /// public decimal Price { get; set; } /// /// 描述 :商品划线价格 /// public decimal OriginPrice { get; set; } /// /// 描述 :商品库存总量 /// public int SpuStockQuantity { get; set; } /// /// 描述 :是否上架 /// public int IsPutOnSale { get; set; } } }