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.
22 lines
519 B
22 lines
519 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; }
|
||
|
}
|
||
|
}
|