36 lines
804 B
C#
36 lines
804 B
C#
|
|
namespace RIZO.Model.MES.alarm.Dto
|
|
{
|
|
/// <summary>
|
|
/// PLC报警信息字典查询对象
|
|
/// </summary>
|
|
public class AlarmProblemDictionaryQueryDto : PagerInfo
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// PLC报警信息字典输入输出对象
|
|
/// </summary>
|
|
public class AlarmProblemDictionaryDto
|
|
{
|
|
[Required(ErrorMessage = "Id不能为空")]
|
|
public int Id { get; set; }
|
|
|
|
public string WorkstationCode { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string DataType { get; set; }
|
|
|
|
public string LogicalAddress { get; set; }
|
|
|
|
public string Comment { get; set; }
|
|
|
|
public DateTime? CreatedTime { get; set; }
|
|
|
|
|
|
|
|
[ExcelColumn(Name = "DataType")]
|
|
public string DataTypeLabel { get; set; }
|
|
}
|
|
} |