49 lines
1.1 KiB
C#
49 lines
1.1 KiB
C#
|
|
using System.ComponentModel.DataAnnotations;
|
||
|
|
|
||
|
|
namespace DOAN.Model.Dto
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 工艺建模工步表查询对象
|
||
|
|
/// </summary>
|
||
|
|
public class ProModelWorkStepQueryDto : PagerInfo
|
||
|
|
{
|
||
|
|
public string StepName { get; set; }
|
||
|
|
|
||
|
|
public string StepCode { get; set; }
|
||
|
|
|
||
|
|
public long? ProcessId { get; set; }
|
||
|
|
}
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 工艺建模工步表输入输出对象
|
||
|
|
/// </summary>
|
||
|
|
public class ProModelWorkStepDto
|
||
|
|
{
|
||
|
|
[Required(ErrorMessage = "id不能为空")]
|
||
|
|
[JsonConverter(typeof(ValueToStringConverter))]
|
||
|
|
public long Id { get; set; }
|
||
|
|
|
||
|
|
public string StepName { get; set; }
|
||
|
|
|
||
|
|
public string StepCode { get; set; }
|
||
|
|
|
||
|
|
public long? ProcessId { get; set; }
|
||
|
|
|
||
|
|
public string Description { get; set; }
|
||
|
|
|
||
|
|
public string IsActive { get; set; }
|
||
|
|
|
||
|
|
public DateTime? CreateTime { get; set; }
|
||
|
|
|
||
|
|
public string CreateBy { get; set; }
|
||
|
|
|
||
|
|
public DateTime? UpdateTime { get; set; }
|
||
|
|
|
||
|
|
public string UpdateBy { get; set; }
|
||
|
|
|
||
|
|
public string Remark { get; set; }
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|