This commit is contained in:
2025-04-29 16:48:28 +08:00
parent 25f2207eec
commit 99a74fa5db
18 changed files with 1670 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
using System.ComponentModel.DataAnnotations;
namespace ZR.Model.Dto
{
/// <summary>
/// 后道班组查询对象
/// </summary>
public class QcBackEndBaseGroupQueryDto : PagerInfo
{
}
/// <summary>
/// 后道班组输入输出对象
/// </summary>
public class QcBackEndBaseGroupDto
{
[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; }
}
}