using System.Collections.Generic;
namespace BBWY.Server.Model.Dto
{
public class CreateOnlinePurchaseOrderResponse
{
public string PurchaseOrderId { get; set; }
///
/// 订单总额
///
public decimal TotalAmount { get; set; }
///
/// 货款总额
///
public decimal ProductAmount { get; set; }
///
/// 运费总额
///
public decimal FreightAmount { get; set; }
///
/// 下单失败的商品信息
///
public IList FailProductMessageList { get; set; }
}
}