50 lines
1.2 KiB
C#
50 lines
1.2 KiB
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace MDM.Model.Process.Dto
|
|
{
|
|
/// <summary>
|
|
/// 工序流转查询对象
|
|
/// </summary>
|
|
public class ProcessOperationTransitionQueryDto : PagerInfo
|
|
{
|
|
public string? FkRoutingCode { get; set; }
|
|
|
|
public string? FromOperationCode { get; set; }
|
|
|
|
public string? ToOperationCode { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 工序流转输入输出对象
|
|
/// </summary>
|
|
public class ProcessOperationTransitionDto
|
|
{
|
|
[Required(ErrorMessage = "id不能为空")]
|
|
public int TransitionId { get; set; }
|
|
|
|
public string? FkRoutingCode { get; set; }
|
|
|
|
public string? FromOperationCode { get; set; }
|
|
|
|
public string? ToOperationCode { get; set; }
|
|
|
|
public string? TransitionType { get; set; }
|
|
|
|
public string? ConditionRule { get; set; }
|
|
|
|
public string? Description { get; set; }
|
|
|
|
public int? Sequence { get; set; }
|
|
|
|
public string? CreatedBy { get; set; }
|
|
|
|
public DateTime? CreatedTime { get; set; }
|
|
|
|
public string? UpdatedBy { get; set; }
|
|
|
|
public DateTime? UpdatedTime { get; set; }
|
|
|
|
|
|
|
|
}
|
|
} |