From 62ceadf26529701948c04ee8a8f29fecf3ba0410 Mon Sep 17 00:00:00 2001 From: xuyang <748613696@qq.com> Date: Thu, 14 Sep 2023 14:32:30 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B6=88=E6=81=AF=E9=85=8D=E7=BD=AE=E5=AE=9E?= =?UTF-8?q?=E4=BD=93=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../njcn/user/pojo/param/AppInfoSetParam.java | 14 ++++++------ .../com/njcn/user/pojo/po/app/AppInfoSet.java | 22 +++++++++---------- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/pqs-user/user-api/src/main/java/com/njcn/user/pojo/param/AppInfoSetParam.java b/pqs-user/user-api/src/main/java/com/njcn/user/pojo/param/AppInfoSetParam.java index 2a8f2432b..891350b62 100644 --- a/pqs-user/user-api/src/main/java/com/njcn/user/pojo/param/AppInfoSetParam.java +++ b/pqs-user/user-api/src/main/java/com/njcn/user/pojo/param/AppInfoSetParam.java @@ -14,17 +14,17 @@ import lombok.EqualsAndHashCode; @Data public class AppInfoSetParam { - @ApiModelProperty(value = "事件消息模块") + @ApiModelProperty(value = "暂态事件") private Integer eventInfo; - @ApiModelProperty(value = "数据消息模块") - private Integer dataInfo; + @ApiModelProperty(value = "稳态事件") + private Integer harmonicInfo; - @ApiModelProperty(value = "终端消息模块") - private Integer deviceInfo; + @ApiModelProperty(value = "设备运行事件") + private Integer runInfo; - @ApiModelProperty(value = "系统消息模块") - private Integer systemInfo; + @ApiModelProperty(value = "设备告警") + private Integer alarmInfo; @Data @EqualsAndHashCode(callSuper = true) diff --git a/pqs-user/user-api/src/main/java/com/njcn/user/pojo/po/app/AppInfoSet.java b/pqs-user/user-api/src/main/java/com/njcn/user/pojo/po/app/AppInfoSet.java index 3c4533470..e6adf59d8 100644 --- a/pqs-user/user-api/src/main/java/com/njcn/user/pojo/po/app/AppInfoSet.java +++ b/pqs-user/user-api/src/main/java/com/njcn/user/pojo/po/app/AppInfoSet.java @@ -27,28 +27,28 @@ public class AppInfoSet { private String userId; /** - * 0:关闭 ;1:开启 事件消息模块 + * 0:关闭 ;1:开启 暂态事件 */ - @ApiModelProperty("事件消息模块") + @ApiModelProperty("暂态事件") private Integer eventInfo; /** - * 0:关闭 ;1:开启 数据消息模块 + * 0:关闭 ;1:开启 稳态事件 */ - @ApiModelProperty("数据消息模块") - private Integer dataInfo; + @ApiModelProperty("稳态事件") + private Integer harmonicInfo; /** - * 0:关闭 ;1:开启 终端消息模块 + * 0:关闭 ;1:开启 设备运行事件 */ - @ApiModelProperty("终端消息模块") - private Integer deviceInfo; + @ApiModelProperty("设备运行事件") + private Integer runInfo; /** - * 0:关闭 ;1:开启 系统消息模块 + * 0:关闭 ;1:开启 设备告警 */ - @ApiModelProperty("系统消息模块") - private Integer systemInfo; + @ApiModelProperty("设备告警") + private Integer alarmInfo; }