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