入库检验
This commit is contained in:
46
ZR.Model/MES/wms/Dto/WmFgentryInspectDto.cs
Normal file
46
ZR.Model/MES/wms/Dto/WmFgentryInspectDto.cs
Normal file
@@ -0,0 +1,46 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace ZR.Model.MES.wms.Dto
|
||||
{
|
||||
/// <summary>
|
||||
/// 成品入库检验查询对象
|
||||
/// </summary>
|
||||
public class WmFgentryInspectQueryDto : PagerInfo
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 成品入库检验输入输出对象
|
||||
/// </summary>
|
||||
public class WmFgentryInspectDto
|
||||
{
|
||||
[Required(ErrorMessage = "主键不能为空")]
|
||||
public int Id { get; set; }
|
||||
|
||||
public string Workorder { get; set; }
|
||||
|
||||
[Required(ErrorMessage = "箱子号不能为空")]
|
||||
public string Packcode { get; set; }
|
||||
|
||||
public string Machine { get; set; }
|
||||
|
||||
public int? ProductionNum { get; set; }
|
||||
|
||||
public string Partnumber { get; set; }
|
||||
|
||||
public int? Bfilled { get; set; }
|
||||
|
||||
public int? Result { get; set; }
|
||||
|
||||
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