namespace RIZO.Model.MES.alarm
{
///
/// PLC报警信息字典
///
[SugarTable("AlarmProblemDictionary")]
public class AlarmProblemDictionary
{
///
/// Id
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
///
/// WorkstationCode
///
public string WorkstationCode { get; set; }
///
/// Name
///
public string Name { get; set; }
///
/// DataType
///
public string DataType { get; set; }
///
/// LogicalAddress
///
public string LogicalAddress { get; set; }
///
/// Comment
///
public string Comment { get; set; }
///
/// CreatedTime
///
public DateTime? CreatedTime { get; set; }
}
}