入库检验

This commit is contained in:
qianhao.xu
2024-04-17 18:48:33 +08:00
parent eb85c457fd
commit 8581530276
17 changed files with 350 additions and 4 deletions

View 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; }
}
}