namespace BBWYB.Server.Model.Dto { public class AssociationPurchaseOrderResponse { public AssociationPurchaseOrderResponse() { AssocationOrderCostDetailList = new List(); } /// /// 采购单号 /// public string PurchaserOrderId { get; set; } public Enums.Platform PurchasePlatform { get; set; } /// /// 买家账号Id (如果采购平台为不支持的平台,此Id可填空) /// public string PurchaseAccountId { get; set; } /// /// 买家账号 /// public string PurchaseAccountName { get; set; } /// /// 商家Id /// public string PurchaserId { get; set; } /// /// 商家名称 /// public string PurchaserName { get; set; } /// /// 采购金额 /// public decimal PurchaseAmount { get; set; } /// /// 采购运费 /// public decimal PurchaseFreight { get; set; } /// /// 订单成本明细列表 /// public IList AssocationOrderCostDetailList { get; set; } } }