From c33a9e7923e24b3fd8bad1a9e2cd2d1cf385105b Mon Sep 17 00:00:00 2001 From: ‘liusuyi’ <1951119284@qq.com> Date: 星期二, 02 四月 2024 08:54:28 +0800 Subject: [PATCH] 修复相机密码脱敏导致的bug --- ard-work/src/main/java/com/ruoyi/alarm/wall/domain/ArdAlarmWall.java | 27 ++++++++++++++++++++++++++- 1 files changed, 26 insertions(+), 1 deletions(-) diff --git a/ard-work/src/main/java/com/ruoyi/alarm/wall/domain/ArdAlarmWall.java b/ard-work/src/main/java/com/ruoyi/alarm/wall/domain/ArdAlarmWall.java index 70fba5d..31aa09d 100644 --- a/ard-work/src/main/java/com/ruoyi/alarm/wall/domain/ArdAlarmWall.java +++ b/ard-work/src/main/java/com/ruoyi/alarm/wall/domain/ArdAlarmWall.java @@ -6,6 +6,7 @@ import org.apache.commons.lang3.builder.ToStringStyle; import com.ruoyi.common.annotation.Excel; import com.ruoyi.common.core.domain.BaseEntity; +import org.springframework.format.annotation.DateTimeFormat; /** * 鐢靛瓙鍥存爮鎶ヨ瀵硅薄 ard_alarm_wall @@ -51,8 +52,32 @@ /** 楂樺眰 */ @Excel(name = "楂樺眰") private Double altitude; + /** + * 鎶ヨ鎬绘暟 + */ + private Integer total; + /** + * 鏈鎶ヨ鏁伴噺 + */ + private Integer count; - public void setId(String id) + public Integer getTotal() { + return total; + } + + public void setTotal(Integer total) { + this.total = total; + } + + public Integer getCount() { + return count; + } + + public void setCount(Integer count) { + this.count = count; + } + + public void setId(String id) { this.id = id; } -- Gitblit v1.9.3