调整温湿度计-pad接口用实体类注解
This commit is contained in:
parent
22d2b8ed8d
commit
9f33cd1b3a
|
|
@ -19,60 +19,25 @@ import java.util.Date;
|
||||||
* <p>功能描述:功能描述
|
* <p>功能描述:功能描述
|
||||||
*/
|
*/
|
||||||
@Data
|
@Data
|
||||||
@TableName("nu_iot_yiweilian_humid_alarm")
|
|
||||||
@Accessors(chain = true)
|
|
||||||
@EqualsAndHashCode(callSuper = false)
|
|
||||||
@ApiModel(value="nu_iot_yiweilian_humid_alarm对象", description="易维联-温湿设备告警")
|
|
||||||
public class HumidAlarmEntity implements Serializable {
|
public class HumidAlarmEntity implements Serializable {
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
@TableId(type = IdType.AUTO)
|
|
||||||
@ApiModelProperty(value = "主键")
|
|
||||||
private Integer id;
|
private Integer id;
|
||||||
@Excel(name = "设备SN号", width = 15)
|
|
||||||
@ApiModelProperty(value = "设备SN号")
|
|
||||||
private String sn;
|
private String sn;
|
||||||
@Excel(name = "告警ID", width = 15)
|
|
||||||
@ApiModelProperty(value = "告警ID")
|
|
||||||
private String alarmId;
|
private String alarmId;
|
||||||
@Excel(name = "告警状态ID", width = 15)
|
|
||||||
@ApiModelProperty(value = "告警状态ID")
|
|
||||||
private String wrId;
|
private String wrId;
|
||||||
@Excel(name = "告警数据", width = 15)
|
|
||||||
@ApiModelProperty(value = "告警数据")
|
|
||||||
private String wrData;
|
private String wrData;
|
||||||
@Excel(name = "告警内容", width = 15)
|
|
||||||
@ApiModelProperty(value = "告警内容")
|
|
||||||
private String wrContent;
|
private String wrContent;
|
||||||
@Excel(name = "告警记录时间", width = 15)
|
|
||||||
@ApiModelProperty(value = "告警记录时间")
|
|
||||||
private String wrDate;
|
private String wrDate;
|
||||||
@Excel(name = "清除告警ID", width = 15)
|
|
||||||
@ApiModelProperty(value = "清除告警ID")
|
|
||||||
private String clearAlarmId;
|
private String clearAlarmId;
|
||||||
@Excel(name = "清除告警状态ID", width = 15)
|
|
||||||
@ApiModelProperty(value = "清除告警状态ID")
|
|
||||||
private String clearId;
|
private String clearId;
|
||||||
@Excel(name = "清除告警数据", width = 15)
|
|
||||||
@ApiModelProperty(value = "清除告警数据")
|
|
||||||
private String clearData;
|
private String clearData;
|
||||||
@Excel(name = "清除告警内容", width = 15)
|
|
||||||
@ApiModelProperty(value = "清除告警内容")
|
|
||||||
private String clearContent;
|
private String clearContent;
|
||||||
@Excel(name = "清除告警记录时间", width = 15)
|
|
||||||
@ApiModelProperty(value = "清除告警记录时间")
|
|
||||||
private String clearDate;
|
private String clearDate;
|
||||||
@Excel(name = "状态", width = 15)
|
|
||||||
@ApiModelProperty(value = "状态")
|
|
||||||
private String status; //状态 0告警 1清除
|
private String status; //状态 0告警 1清除
|
||||||
|
|
||||||
@TableField(exist = false)
|
|
||||||
private Date alarmStartTime;
|
private Date alarmStartTime;
|
||||||
@TableField(exist = false)
|
|
||||||
private Date alarmEndTime;
|
private Date alarmEndTime;
|
||||||
@TableField(exist = false)
|
|
||||||
private Date clearStartTime;
|
private Date clearStartTime;
|
||||||
@TableField(exist = false)
|
|
||||||
private Date clearEndTime;
|
private Date clearEndTime;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue