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.

33 lines
706 B

2 years ago
namespace BBWYB.Client.Models
{
public class OrderSkuResponse
{
/// <summary>
/// 购买数量
/// </summary>
public int ItemTotal { get; set; }
public string Id { get; set; }
public string ProductId { get; set; }
public string ProductNo { get; set; }
public double Price { get; set; }
/// <summary>
/// Sku标题
/// </summary>
public string Title { get; set; }
public string Logo { get; set; }
/// <summary>
/// 代发信息Id
/// </summary>
public long? OrderDropShippingId { get; set; }
public bool IsRefund { get; set; } = false;
}
}