仓库-仓库拼箱拆箱待打印记录功能添加
This commit is contained in:
55
ZR.Model/MES/wms/Dto/WmPackageLclDto.cs
Normal file
55
ZR.Model/MES/wms/Dto/WmPackageLclDto.cs
Normal file
@@ -0,0 +1,55 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace ZR.Model.MES.wms.Dto
|
||||
{
|
||||
/// <summary>
|
||||
/// 拼箱/拆箱待打标签记录表查询对象
|
||||
/// </summary>
|
||||
public class WmPackageLclQueryDto : PagerInfo
|
||||
{
|
||||
public string Partnumber { get; set; }
|
||||
public string PackageCode { get; set; }
|
||||
public string LocationCode { get; set; }
|
||||
public int Type { get; set; }
|
||||
public int Status { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 拼箱/拆箱待打标签记录表输入输出对象
|
||||
/// </summary>
|
||||
public class WmPackageLclDto
|
||||
{
|
||||
public string Id { get; set; }
|
||||
|
||||
[Required(ErrorMessage = "零件号不能为空")]
|
||||
public string Partnumber { get; set; }
|
||||
|
||||
public string Description { get; set; }
|
||||
|
||||
[Required(ErrorMessage = "外箱标签;外箱标签(外箱批次号)不能为空")]
|
||||
public string PackageCode { get; set; }
|
||||
|
||||
public string SerialNumber { get; set; }
|
||||
|
||||
public string LocationCode { get; set; }
|
||||
|
||||
[Required(ErrorMessage = "零件数不能为空")]
|
||||
public int GoodsNum { get; set; } = 0;
|
||||
|
||||
public string Team { get; set; } = "C";
|
||||
public int Type { get; set; } = 0;
|
||||
public int Status { get; set; } = 0;
|
||||
public string Remark { get; set; } = string.Empty;
|
||||
|
||||
public string CreatedBy { get; set; }
|
||||
|
||||
public DateTime? CreatedTime { get; set; }
|
||||
|
||||
public string UpdatedBy { get; set; }
|
||||
|
||||
public DateTime? UpdatedTime { get; set; }
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user