34 lines
771 B
C#
34 lines
771 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace ZR.Model.MES.wms.Dto
|
|
{
|
|
/// <summary>
|
|
/// 通用查询条件
|
|
/// </summary>
|
|
public class CommonQueryDto : PagerInfo
|
|
{
|
|
public string Query { get; set; }
|
|
}
|
|
/// <summary>
|
|
/// 拼箱操作
|
|
/// </summary>
|
|
public class WmGoodsConsolidationDto
|
|
{
|
|
public List<ResultionPackageCodeDto> PackageList { get; set; }
|
|
public int secondNum { get; set; }
|
|
public string CreateBy { get; set; }
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// 拆箱操作
|
|
/// </summary>
|
|
public class WmGoodsUnpackingDto
|
|
{
|
|
public ResultionPackageCodeDto Package { get; set; }
|
|
|
|
public int firstNum { get; set; }
|
|
public string CreateBy { get; set; }
|
|
|
|
}
|
|
} |