You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
112 lines
2.8 KiB
112 lines
2.8 KiB
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 DeliveryExpressFreight { get; set; }
|
|
|
|
/// <summary>
|
|
/// 采购运费
|
|
/// </summary>
|
|
public decimal PurchaseFreight { 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; }
|
|
|
|
public string VenderRemark { get; set; }
|
|
|
|
/// <summary>
|
|
/// 订单货款金额
|
|
/// </summary>
|
|
public decimal OrderSellerPrice { get; set; }
|
|
|
|
/// <summary>
|
|
/// 实收金额
|
|
/// </summary>
|
|
public decimal ActualAmount { get { return OrderSellerPrice + FreightPrice; } }
|
|
|
|
/// <summary>
|
|
/// 用户应付金额
|
|
/// </summary>
|
|
public decimal OrderPayment { get; set; }
|
|
|
|
/// <summary>
|
|
/// 耗材费
|
|
/// </summary>
|
|
public decimal ConsumableAmount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 人工打包费
|
|
/// </summary>
|
|
public decimal PackagingLaborAmount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 入仓操作费
|
|
/// </summary>
|
|
public decimal InStorageAmount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 出仓操作费
|
|
/// </summary>
|
|
public decimal OutStorageAmount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 刷单/空单号费
|
|
/// </summary>
|
|
public decimal SDOrderAmount { get; set; } = 0.00M;
|
|
}
|
|
}
|
|
|