You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
565 B

namespace QuanTan.SDK.Models.Buyer
{
public class QuanTan_Buyer_PreviewOrderResponse
{
/// <summary>
/// 货款
/// </summary>
public decimal ProductPrice { get; set; }
/// <summary>
/// 运费
/// </summary>
public decimal PostagePrice { get; set; }
/// <summary>
/// 总费用
/// </summary>
public decimal TotalPrice { get; set; }
/// <summary>
/// 购物车Id
/// </summary>
public string CartIds { get; set; }
}
}