zhuangpei-mesbackend/DOAN.Model/MES/process/Dto/ProModelDictionaryDto.cs
2025-11-06 20:28:30 +08:00

38 lines
853 B
C#

using System.ComponentModel.DataAnnotations;
namespace DOAN.Model.Dto
{
/// <summary>
/// 工艺建模字典表查询对象
/// </summary>
public class ProModelDictionaryQueryDto : PagerInfo
{
}
/// <summary>
/// 工艺建模字典表输入输出对象
/// </summary>
public class ProModelDictionaryDto
{
[Required(ErrorMessage = "主键ID不能为空")]
[JsonConverter(typeof(ValueToStringConverter))]
public long Id { get; set; }
public string OperationCode { get; set; }
public string OperationName { 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; }
}
}