|
|
@ -1,14 +1,8 @@ |
|
|
|
namespace SDKAdapter.OperationPlatform.Models |
|
|
|
{ |
|
|
|
public class OP_OrderListResponse |
|
|
|
{ |
|
|
|
public int Count { get; set; } |
|
|
|
|
|
|
|
public IList<OP_OrderResponse> Items { get; set; } |
|
|
|
} |
|
|
|
|
|
|
|
public class OP_OrderResponse |
|
|
|
{ |
|
|
|
#region 常规数据
|
|
|
|
public string OrderId { get; set; } |
|
|
|
|
|
|
|
public DateTime StartTime { get; set; } |
|
|
@ -40,6 +34,74 @@ |
|
|
|
/// </summary>
|
|
|
|
public int StorageType { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 订单状态
|
|
|
|
/// <para>京东【WAIT_SELLER_STOCK_OUT 等待出库,WAIT_GOODS_RECEIVE_CONFIRM 等待确认收货,WAIT_SELLER_DELIVERY等待发货(只适用于海外购商家,含义为'等待境内发货'标签下的订单,非海外购商家无需使用) , PAUSE 暂停(loc订单可通过此状态获取),FINISHED_L 完成,TRADE_CANCELED 取消,LOCKED 已锁定,POP_ORDER_PAUSE pop业务暂停】</para>
|
|
|
|
/// <para>拳探【订单状态:-1、已退款;0、待发货;1、待收货;2、待评价;3、已完成; 】</para>
|
|
|
|
/// </summary>
|
|
|
|
public string OrderState { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 订单总价
|
|
|
|
/// </summary>
|
|
|
|
public decimal OrderTotalAmount { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 订单货款
|
|
|
|
/// </summary>
|
|
|
|
public decimal OrderProductAmount { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 用户应付
|
|
|
|
/// </summary>
|
|
|
|
public decimal OrderPayment { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 商家实收金额
|
|
|
|
/// </summary>
|
|
|
|
public decimal PaidInAmount { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 平台补贴金额
|
|
|
|
/// </summary>
|
|
|
|
public decimal PreferentialAmount { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 商家优惠金额
|
|
|
|
/// </summary>
|
|
|
|
public decimal SellerPreferentialAmount { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 用户承担的运费
|
|
|
|
/// </summary>
|
|
|
|
public decimal FreightAmount { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 买家备注
|
|
|
|
/// </summary>
|
|
|
|
public string BuyerRemark { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 商家备注
|
|
|
|
/// </summary>
|
|
|
|
public string VenderRemark { get; set; } |
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region 收货人信息
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region 商品信息
|
|
|
|
public IList<OP_OrderProductSkuResponse> OrderSkuList { get; set; } |
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region 物流信息
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
|
|
#region 各平台独有数据
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
} |
|
|
|
} |
|
|
|