56 lines
1.6 KiB
C#
56 lines
1.6 KiB
C#
|
||
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; }
|
||
|
||
|
||
|
||
}
|
||
} |