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.

30 lines
800 B

2 years ago
namespace BBWYB.Server.Model.Dto
{
public class CargoParamRequest
{
/// <summary>
/// 采购商品Id
/// </summary>
public string ProductId { get; set; }
/// <summary>
/// 采购SkuId
/// </summary>
public string SkuId { get; set; }
public string SpecId { get; set; }
public int Quantity { get; set; }
/// <summary>
/// 订单SkuId
/// </summary>
public string BelongSkuId { get; set; }
}
2 years ago
public class CargoParamGroupRequest
{
public string PurchaserId { get; set; }
public string PurchaserName { get; set; }
public Enums.Platform PurchasePlatform { get; set; }
public IList<CargoParamRequest> CargoParamList { get; set; }
}
2 years ago
}