2025-11-11 20:23:30 +08:00

56 lines
1.6 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace RIZO.Model.Mes.Dto.MasterData
{
/// <summary>
/// 产线工位工序字典表查询对象
/// </summary>
public class StationProcessDictQueryDto : PagerInfo
{
public string LineName { get; set; }
public string StationName { get; set; }
public string ProcessName { get; set; }
}
/// <summary>
/// 产线工位工序字典表输入输出对象
/// </summary>
public class StationProcessDictDto
{
[Required(ErrorMessage = "主键ID不能为空")]
public long Id { get; set; }
[Required(ErrorMessage = "产线编码(关联产线主表,业务唯一标识)不能为空")]
public string LineCode { get; set; }
[Required(ErrorMessage = "产线名称不能为空")]
public string LineName { get; set; }
[Required(ErrorMessage = "工位编码业务唯一标识LINE001-ST001不能为空")]
public string StationCode { get; set; }
[Required(ErrorMessage = "工位名称不能为空")]
public string StationName { get; set; }
[Required(ErrorMessage = "工序编码业务唯一标识LINE001-ST001-PROC001不能为空")]
public string ProcessCode { get; set; }
[Required(ErrorMessage = "工序名称不能为空")]
public string ProcessName { get; set; }
public string CreateBy { get; set; }
public DateTime? CreateTime { get; set; }
public string UpdateBy { get; set; }
public DateTime? UpdateTime { get; set; }
public string CreateName { get; set; }
public string UpdateName { get; set; }
}
}