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.
27 lines
579 B
27 lines
579 B
namespace BBWY.Client.Models
|
|
{
|
|
public class OrderSku
|
|
{
|
|
public string Id { get; set; }
|
|
|
|
public int ItemTotal { get; set; }
|
|
|
|
public string ProductId { get; set; }
|
|
|
|
public string ProductItemNum { 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; }
|
|
}
|
|
}
|
|
|