using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.Text; namespace BBWY.Server.Model.Dto { public class ProductResponse { /// /// 商品Id /// public string Id { get; set; } /// /// 商品货号 /// public string ProductItemNum { get; set; } /// /// 商品标题 /// public string Title { get; set; } /// /// 京东商品状态【-1:删除 1:从未上架 2:自主下架 4:系统下架 8:上架 513:从未上架待审 514:自主下架待审 516:系统下架待审 520:上架待审核 1028:系统下架审核失败】 /// public int State { get; set; } public DateTime? CreateTime { get; set; } public string Logo { get; set; } /// /// 商品品牌名称 /// public string BrandName { get; set; } } public class ProductListResponse { public int Count { get; set; } public IList Items { get; set; } } public class ProductSkuResponse { public string Id { get; set; } public string ProductId { get; set; } public decimal Price { get; set; } /// /// Sku标题 /// public string Title { get; set; } public string Logo { get; set; } /// /// 京东Sku状态【1:上架 2:下架 4:删除】 /// public int State { get; set; } public DateTime? CreateTime { get; set; } public JToken Source { get; set; } } public class SimpleProductSkuResponse { public string Id { get; set; } public string Logo { get; set; } } }