生产管理

This commit is contained in:
qianhao.xu
2024-12-03 14:35:59 +08:00
parent 5e522c6e00
commit aab3a3b58d
41 changed files with 4616 additions and 2 deletions

View File

@@ -0,0 +1,45 @@
using System.ComponentModel.DataAnnotations;
namespace DOAN.Model.MES.base_.Dto
{
/// <summary>
/// 组查询对象
/// </summary>
public class BaseGroupQueryDto : PagerInfo
{
public string GroupCode { get; set; }
public string GroupName { get; set; }
public int? Status { get; set; }
}
/// <summary>
/// 组输入输出对象
/// </summary>
public class BaseGroupDto
{
[Required(ErrorMessage = "id不能为空")]
public int Id { get; set; }
[Required(ErrorMessage = "组代码不能为空")]
public string GroupCode { get; set; }
public string GroupName { get; set; }
public string Remark { get; set; }
public int? Status { get; set; }
public string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
}
}