using System; using System.Collections.Generic; namespace BBWY.Server.Model.Dto { public class ExportOrderSkuResponse { public string OrderId { get; set; } public DateTime? StartTime { get; set; } public long ShopId { get; set; } public string ShopName { get; set; } public string Spu { get; set; } public string Sku { get; set; } public Enums.StorageType? StorageType { get; set; } public decimal? PurchaseSkuAmount { get; set; } public decimal? PurchaseFreight { get; set; } public decimal? SkuPrice { get; set; } public int? ItemTotal { get; set; } public string SpuName { get; set; } public Enums.OrderState? OrderState { get; set; } /// /// 平台补贴 /// public decimal? PreferentialAmount { get; set; } /// /// 商家优惠金额 /// public decimal? SellerPreferentialAmount { get; set; } } public class ExportOrderSkuListResponse { public long Count { get; set; } public IList ItemList { get; set; } } }