|
@@ -22,7 +22,7 @@ public class TElecdashboardAlarm extends BaseEntity
|
|
|
|
|
|
/** 值 */
|
|
|
@Excel(name = "值")
|
|
|
- private Long alarmValue;
|
|
|
+ private String alarmValue;
|
|
|
|
|
|
/** 预警时间 */
|
|
|
@Excel(name = "预警时间")
|
|
@@ -30,11 +30,11 @@ public class TElecdashboardAlarm extends BaseEntity
|
|
|
|
|
|
/** 位号 */
|
|
|
@Excel(name = "位号")
|
|
|
- private Long code;
|
|
|
+ private String code;
|
|
|
|
|
|
/** 内容 */
|
|
|
@Excel(name = "内容")
|
|
|
- private Long description;
|
|
|
+ private String description;
|
|
|
|
|
|
public void setId(Long id)
|
|
|
{
|
|
@@ -45,30 +45,30 @@ public class TElecdashboardAlarm extends BaseEntity
|
|
|
{
|
|
|
return id;
|
|
|
}
|
|
|
- public void setAlarmValue(Long alarmValue)
|
|
|
+ public void setAlarmValue(String alarmValue)
|
|
|
{
|
|
|
this.alarmValue = alarmValue;
|
|
|
}
|
|
|
|
|
|
- public Long getAlarmValue()
|
|
|
+ public String getAlarmValue()
|
|
|
{
|
|
|
return alarmValue;
|
|
|
}
|
|
|
- public void setCode(Long code)
|
|
|
+ public void setCode(String code)
|
|
|
{
|
|
|
this.code = code;
|
|
|
}
|
|
|
|
|
|
- public Long getCode()
|
|
|
+ public String getCode()
|
|
|
{
|
|
|
return code;
|
|
|
}
|
|
|
- public void setDescription(Long description)
|
|
|
+ public void setDescription(String description)
|
|
|
{
|
|
|
this.description = description;
|
|
|
}
|
|
|
|
|
|
- public Long getDescription()
|
|
|
+ public String getDescription()
|
|
|
{
|
|
|
return description;
|
|
|
}
|