From 5dfafc707d5bcc8a892ee231bddd145a89582e76 Mon Sep 17 00:00:00 2001 From: aijinhui <aijinhui> Date: 星期五, 29 十二月 2023 10:29:59 +0800 Subject: [PATCH] 车牌 --- 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