60 lines
1.4 KiB
C#
Raw Normal View History

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 ProcessOperationQueryDto : PagerInfo
{
}
/// <summary>
/// 工序输入输出对象
/// </summary>
public class ProcessOperationDto
{
[Required(ErrorMessage = "工序id不能为空")]
public int OperationId { get; set; }
public string FkRoutingCode { get; set; }
[Required(ErrorMessage = "工序code不能为空")]
public string OperationCode { get; set; }
public string OperationName { get; set; }
public int? OperationSeq { get; set; }
public string OperationType { get; set; }
public string Description { get; set; }
public int? StandardTime { get; set; }
public string ControlStrategy { get; set; }
public string IsSkippable { get; set; }
public string IsReworkable { get; set; }
public string IsParallel { get; set; }
public string ParallelGroupCode { get; set; }
public string DefaultNextOperationCode { 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; }
}
}