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
551 B
25 lines
551 B
namespace QuanTan.SDK.Model
|
|
{
|
|
public class QuanTanPreviewOrderResponse
|
|
{
|
|
/// <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; }
|
|
}
|
|
}
|
|
|