From 9f33cd1b3abe0bc671b8a9e9595b19b394104dcf Mon Sep 17 00:00:00 2001 From: "1378012178@qq.com" <1378012178@qq.com> Date: Fri, 24 Oct 2025 09:59:01 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E6=B8=A9=E6=B9=BF=E5=BA=A6?= =?UTF-8?q?=E8=AE=A1-pad=E6=8E=A5=E5=8F=A3=E7=94=A8=E5=AE=9E=E4=BD=93?= =?UTF-8?q?=E7=B1=BB=E6=B3=A8=E8=A7=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/nu/entity/HumidAlarmEntity.java | 35 ------------------- 1 file changed, 35 deletions(-) diff --git a/nursing-unit-common/src/main/java/com/nu/entity/HumidAlarmEntity.java b/nursing-unit-common/src/main/java/com/nu/entity/HumidAlarmEntity.java index 88ad4886..6b272f76 100644 --- a/nursing-unit-common/src/main/java/com/nu/entity/HumidAlarmEntity.java +++ b/nursing-unit-common/src/main/java/com/nu/entity/HumidAlarmEntity.java @@ -19,60 +19,25 @@ import java.util.Date; *

功能描述:功能描述 */ @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 { private static final long serialVersionUID = 1L; - @TableId(type = IdType.AUTO) - @ApiModelProperty(value = "主键") private Integer id; - @Excel(name = "设备SN号", width = 15) - @ApiModelProperty(value = "设备SN号") private String sn; - @Excel(name = "告警ID", width = 15) - @ApiModelProperty(value = "告警ID") private String alarmId; - @Excel(name = "告警状态ID", width = 15) - @ApiModelProperty(value = "告警状态ID") private String wrId; - @Excel(name = "告警数据", width = 15) - @ApiModelProperty(value = "告警数据") private String wrData; - @Excel(name = "告警内容", width = 15) - @ApiModelProperty(value = "告警内容") private String wrContent; - @Excel(name = "告警记录时间", width = 15) - @ApiModelProperty(value = "告警记录时间") private String wrDate; - @Excel(name = "清除告警ID", width = 15) - @ApiModelProperty(value = "清除告警ID") private String clearAlarmId; - @Excel(name = "清除告警状态ID", width = 15) - @ApiModelProperty(value = "清除告警状态ID") private String clearId; - @Excel(name = "清除告警数据", width = 15) - @ApiModelProperty(value = "清除告警数据") private String clearData; - @Excel(name = "清除告警内容", width = 15) - @ApiModelProperty(value = "清除告警内容") private String clearContent; - @Excel(name = "清除告警记录时间", width = 15) - @ApiModelProperty(value = "清除告警记录时间") private String clearDate; - @Excel(name = "状态", width = 15) - @ApiModelProperty(value = "状态") private String status; //状态 0告警 1清除 - - @TableField(exist = false) private Date alarmStartTime; - @TableField(exist = false) private Date alarmEndTime; - @TableField(exist = false) private Date clearStartTime; - @TableField(exist = false) private Date clearEndTime; }