namespace BBWYB.Server.Model.Dto { public class PreviewOrderResponse { /// /// 总额 /// public decimal TotalAmount { get; set; } /// /// 货款总额 /// public decimal ProductAmount { get; set; } /// /// 运费 /// public decimal FreightAmount { get; set; } /// /// 扩展数据 下单需要 /// public string Extensions { get; set; } /// /// 以采购商分组的报价金额列表 /// public List PreviewAmountGroupByPurchaserList { get; set; } } /// /// 以采购商分组的报价金额 /// public class PreviewAmountGroupByPurchaser { /// /// 采购商Id /// public string PurchaserId { get; set; } /// /// 采购商名称 /// public string PurchaserName { get; set; } public Enums.Platform PurchasePlatform { get; set; } /// /// 总金额 /// public decimal TotalAmount { get; set; } /// /// 货款 /// public decimal ProductAmount { get; set; } /// /// 运费 /// public decimal FreightAmount { get; set; } } }