8 changed files with 166 additions and 48 deletions
@ -0,0 +1,6 @@ |
|||||
|
namespace SDKAdapter.OperationPlatform.Models |
||||
|
{ |
||||
|
public class OP_OrderConsigneeResponse |
||||
|
{ |
||||
|
} |
||||
|
} |
@ -0,0 +1,9 @@ |
|||||
|
namespace SDKAdapter.OperationPlatform.Models |
||||
|
{ |
||||
|
public class OP_OrderListResponse |
||||
|
{ |
||||
|
public int Count { get; set; } |
||||
|
|
||||
|
public IList<OP_OrderResponse> Items { get; set; } |
||||
|
} |
||||
|
} |
@ -0,0 +1,33 @@ |
|||||
|
namespace SDKAdapter.OperationPlatform.Models |
||||
|
{ |
||||
|
public class OP_OrderProductSkuResponse |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// 订单商品流水Id
|
||||
|
/// </summary>
|
||||
|
public string Id { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 订单号
|
||||
|
/// </summary>
|
||||
|
public string OrderId { get; set; } |
||||
|
|
||||
|
public string ProductId { get; set; } |
||||
|
|
||||
|
public string SkuId { get; set; } |
||||
|
|
||||
|
public string SkuTitle { get; set; } |
||||
|
|
||||
|
public string ProductTitle { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// Sku单价
|
||||
|
/// </summary>
|
||||
|
public decimal SkuPrice { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 购买数量
|
||||
|
/// </summary>
|
||||
|
public int Quantity { get; set; } |
||||
|
} |
||||
|
} |
@ -0,0 +1,10 @@ |
|||||
|
namespace SDKAdapter.OperationPlatform.Models |
||||
|
{ |
||||
|
|
||||
|
public class OP_ProductListResponse |
||||
|
{ |
||||
|
public int Count { get; set; } |
||||
|
|
||||
|
public IList<OP_ProductResponse> Items { get; set; } |
||||
|
} |
||||
|
} |
@ -0,0 +1,9 @@ |
|||||
|
namespace SDKAdapter.OperationPlatform.Models |
||||
|
{ |
||||
|
public class OP_ProductSkuListResponse |
||||
|
{ |
||||
|
public int Count { get; set; } |
||||
|
|
||||
|
public IList<OP_ProductSkuResponse> Items { get; set; } |
||||
|
} |
||||
|
} |
@ -0,0 +1,30 @@ |
|||||
|
namespace SDKAdapter.OperationPlatform.Models |
||||
|
{ |
||||
|
public class OP_ProductSkuResponse |
||||
|
{ |
||||
|
public string Id { get; set; } |
||||
|
|
||||
|
public string ProductId { get; set; } |
||||
|
|
||||
|
public decimal Price { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// Sku标题
|
||||
|
/// </summary>
|
||||
|
public string Title { get; set; } |
||||
|
|
||||
|
public string Logo { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// Sku状态
|
||||
|
/// <para>
|
||||
|
/// 京东【1:上架 2:下架 4:删除】
|
||||
|
/// </para>
|
||||
|
/// </summary>
|
||||
|
public int State { get; set; } |
||||
|
|
||||
|
public DateTime? CreateTime { get; set; } |
||||
|
|
||||
|
//public JToken Source { get; set; }
|
||||
|
} |
||||
|
} |
Loading…
Reference in new issue