namespace SDKAdapter.OperationPlatform.Models
{
public class OP_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 OP_ProductListResponse
{
public int Count { get; set; }
public IList Items { get; set; }
}
public class OP_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 OP_ProductSkuListResponse
{
public int Count { get; set; }
public IList Items { get; set; }
}
}