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; }
}
}