52 lines
1.1 KiB
C#
52 lines
1.1 KiB
C#
|
|
namespace RIZO.Model.Mes.Dto.GatherData
|
|
{
|
|
/// <summary>
|
|
/// 生产工艺参数查询对象
|
|
/// </summary>
|
|
public class ProcessParameterQueryDto : PagerInfo
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// 生产工艺参数输入输出对象
|
|
/// </summary>
|
|
public class ProcessParameterDto
|
|
{
|
|
[Required(ErrorMessage = "Id不能为空")]
|
|
public long Id { get; set; }
|
|
|
|
public string ProcessCode { get; set; }
|
|
|
|
public string ProcessName { get; set; }
|
|
|
|
public string OperationCode { get; set; }
|
|
|
|
public string OperationName { get; set; }
|
|
|
|
public int? FirstInspection { get; set; }
|
|
|
|
public string PlcCode { get; set; }
|
|
|
|
public string WorkStation { get; set; }
|
|
|
|
public string Temperature { get; set; }
|
|
|
|
public string Pressure { get; set; }
|
|
|
|
public DateTime? CollectionTime { get; set; }
|
|
|
|
public string CreateBy { get; set; }
|
|
|
|
public DateTime? CreateTime { get; set; }
|
|
|
|
public string UpdateBy { get; set; }
|
|
|
|
public DateTime? UpdateTime { get; set; }
|
|
|
|
public int? Delflag { get; set; }
|
|
|
|
|
|
|
|
}
|
|
} |