Valeo_Line_MES_backend/MDM/Models/Process/Dto/ProcessOprerationTransitionDictDto.cs

41 lines
1008 B
C#
Raw Normal View History

2026-01-10 13:47:54 +08:00
using System.ComponentModel.DataAnnotations;
namespace MDM.Model.Process.Dto
{
/// <summary>
/// 工序流转类型字典查询对象
/// </summary>
public class ProcessOprerationTransitionDictQueryDto : PagerInfo
{
public string? TransitionCode { get; set; }
public string? TranstionName { get; set; }
}
/// <summary>
/// 工序流转类型字典输入输出对象
/// </summary>
public class ProcessOprerationTransitionDictDto
{
2026-01-12 11:13:10 +08:00
public string? UpdatedBy { get; set; }
2026-01-10 13:47:54 +08:00
public DateTime? UpdatedTime { get; set; }
[Required(ErrorMessage = "id不能为空")]
public int Id { get; set; }
[Required(ErrorMessage = "流转code不能为空")]
2026-01-12 11:13:10 +08:00
public string? TransitionCode { get; set; }
2026-01-10 13:47:54 +08:00
2026-01-12 11:13:10 +08:00
public string? TranstionName { get; set; }
2026-01-10 13:47:54 +08:00
2026-01-12 11:13:10 +08:00
public string? Description { get; set; }
2026-01-10 13:47:54 +08:00
2026-01-12 11:13:10 +08:00
public string? CreatedBy { get; set; }
2026-01-10 13:47:54 +08:00
public DateTime? CreatedTime { get; set; }
}
}