4 changed files with 162 additions and 1 deletions
@ -0,0 +1,70 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Text; |
||||
|
|
||||
|
namespace BBWY.Server.Model.Dto |
||||
|
{ |
||||
|
public class ExportOrderResponse |
||||
|
{ |
||||
|
public string OrderId { get; set; } |
||||
|
|
||||
|
public DateTime OrderStartTime { get; set; } |
||||
|
|
||||
|
public string SkuIds { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 代发订单号
|
||||
|
/// </summary>
|
||||
|
public string PurchaseOrderIds { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 订单总额
|
||||
|
/// </summary>
|
||||
|
public decimal OrderTotalPrice { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 采购金额
|
||||
|
/// </summary>
|
||||
|
public decimal PurchaseSkuAmount { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 头程费用
|
||||
|
/// </summary>
|
||||
|
public decimal FirstFreight { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 仓储费
|
||||
|
/// </summary>
|
||||
|
public decimal StorageAmount { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 发货快递费
|
||||
|
/// </summary>
|
||||
|
public decimal DeliveryExpressFreight { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 平台扣点金额
|
||||
|
/// </summary>
|
||||
|
public decimal PlatformCommissionAmount { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 补差金额(用户支付)
|
||||
|
/// </summary>
|
||||
|
public decimal FreightPrice { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 总成本
|
||||
|
/// </summary>
|
||||
|
public decimal TotalCost { get; set; } |
||||
|
|
||||
|
public decimal Profit { get; set; } |
||||
|
|
||||
|
public decimal ProfitRatio { get; set; } |
||||
|
|
||||
|
public string ConsigneeStr { get; set; } |
||||
|
|
||||
|
public Enums.StorageType? StorageType { get; set; } |
||||
|
|
||||
|
public Enums.OrderState OrderState { get; set; } |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue