GP12触摸屏,产线维修件优化

This commit is contained in:
2025-01-03 16:43:02 +08:00
parent 59960809b8
commit 7af537b1cb
50 changed files with 3745 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
using System.ComponentModel.DataAnnotations;
namespace ZR.Model.Dto
{
/// <summary>
/// 质量GP12班组查询对象
/// </summary>
public class QcGp12BaseGroupQueryDto : PagerInfo
{
}
/// <summary>
/// 质量GP12班组输入输出对象
/// </summary>
public class QcGp12BaseGroupDto
{
[Required(ErrorMessage = "主键不能为空")]
public int Id { get; set; }
public string Name { get; set; }
public string Code { get; set; }
public string Type { get; set; }
public string Status { get; set; }
public string Remark { get; set; }
public string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
}
}