namespace BBWY.Server.Model.Dto
{
public class OrderSkuResponse : ProductSkuResponse
{
public string OrderId { get; set; }
///
/// 购买数量
///
public int ItemTotal { get; set; }
public string ProductNo { get; set; }
///
/// 代发信息Id
///
public long? OrderDropShippingId { get; set; }
///
/// 是否退款
///
public bool IsRefund { get; set; } = false;
}
}