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.
25 lines
586 B
25 lines
586 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BBWY.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; }
|
|
}
|
|
}
|
|
|