From 879f0f4ab74d6d6ee147ea41648b35d368045e6c Mon Sep 17 00:00:00 2001 From: ‘liusuyi’ <1951119284@qq.com> Date: 星期五, 07 七月 2023 10:32:02 +0800 Subject: [PATCH] 修改雷达管理业务 修改相机复选框接口状态 --- ard-work/src/main/java/com/ruoyi/alarm/tubeAlarm/domain/ArdAlarmTube.java | 231 +++++++++++++++++++-------------------------------------- 1 files changed, 78 insertions(+), 153 deletions(-) diff --git a/ard-work/src/main/java/com/ruoyi/alarm/tubeAlarm/domain/ArdAlarmTube.java b/ard-work/src/main/java/com/ruoyi/alarm/tubeAlarm/domain/ArdAlarmTube.java index 0912d84..ef5eb9c 100644 --- a/ard-work/src/main/java/com/ruoyi/alarm/tubeAlarm/domain/ArdAlarmTube.java +++ b/ard-work/src/main/java/com/ruoyi/alarm/tubeAlarm/domain/ArdAlarmTube.java @@ -1,7 +1,10 @@ package com.ruoyi.alarm.tubeAlarm.domain; import java.util.Date; + import com.fasterxml.jackson.annotation.JsonFormat; +import lombok.Data; +import lombok.ToString; import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringStyle; import com.ruoyi.common.annotation.Excel; @@ -9,202 +12,124 @@ /** * 绠$嚎娉勯湶鎶ヨ瀵硅薄 ard_alarm_tube - * + * * @author 鍒樿嫃涔� * @date 2023-06-06 */ -public class ArdAlarmTube extends BaseEntity -{ +@Data +@ToString +public class ArdAlarmTube extends BaseEntity { private static final long serialVersionUID = 1L; - /** 涓婚敭 */ + /** + * 涓婚敭 + */ private String id; - /** 鎶ヨ涓绘満 */ + /** + * 鎶ヨ涓绘満 + */ @Excel(name = "鎶ヨ涓绘満") private String host; - /** 绠$嚎id */ + /** + * 绠$嚎id + */ @Excel(name = "绠$嚎id") private String tubeId; - /** 绠$嚎鍚嶇О */ + /** + * 绠$嚎鍚嶇О + */ @Excel(name = "绠$嚎鍚嶇О") private String tubeName; - /** 绠$嚎绫诲瀷-娌圭-姘寸 */ + /** + * 绠$嚎绫诲瀷-娌圭-姘寸 + */ @Excel(name = "绠$嚎绫诲瀷-娌圭-姘寸") private String tubeType; - /** 绠″緞 */ + /** + * 绠″緞 + */ @Excel(name = "绠″緞") private String pipeDiameter; - /** 棰滆壊 */ + /** + * 棰滆壊 + */ @Excel(name = "棰滆壊") private String color; - /** 浣嶇疆 */ + /** + * 浣嶇疆 + */ @Excel(name = "浣嶇疆") - private String position; + private Integer position; - /** 绫诲瀷GXALARM */ + /** + * 缁忓害 + */ + @Excel(name = "缁忓害") + private Double longitude; + + /** + * 绾害 + */ + @Excel(name = "绾害") + private Double latitude; + + /** + * 楂樺眰 + */ + @Excel(name = "楂樺眰") + private Double altitude; + + /** + * 绫诲瀷GXALARM + */ @Excel(name = "绫诲瀷GXALARM") private String type; - /** 绫诲瀷涓枃 */ + /** + * 绫诲瀷涓枃 + */ @Excel(name = "绫诲瀷涓枃") private String alarmType; - /** 鎶ヨ鏃堕棿 */ + /** + * 鎶ヨ鏃堕棿 + */ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") @Excel(name = "鎶ヨ鏃堕棿", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") private Date alarmTime; - /** 鐢ㄦ埛鍚� */ + /** + * 鐢ㄦ埛鍚� + */ @Excel(name = "鐢ㄦ埛鍚�") private String watcher; - /** 鏌ョ湅鏃堕棿 */ + /** + * 鏌ョ湅鏃堕棿 + */ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") @Excel(name = "鏌ョ湅鏃堕棿", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") private Date viewTime; - public void setId(String id) - { - this.id = id; - } + /** + * 鎶ヨ鎬绘暟 + */ + private Integer total; + /** + * 鏈鎶ヨ鏁伴噺 + */ + private Integer count; - public String getId() - { - return id; - } - public void setHost(String host) - { - this.host = host; - } - - public String getHost() - { - return host; - } - public void setTubeId(String tubeId) - { - this.tubeId = tubeId; - } - - public String getTubeId() - { - return tubeId; - } - public void setTubeName(String tubeName) - { - this.tubeName = tubeName; - } - - public String getTubeName() - { - return tubeName; - } - public void setTubeType(String tubeType) - { - this.tubeType = tubeType; - } - - public String getTubeType() - { - return tubeType; - } - public void setPipeDiameter(String pipeDiameter) - { - this.pipeDiameter = pipeDiameter; - } - - public String getPipeDiameter() - { - return pipeDiameter; - } - public void setColor(String color) - { - this.color = color; - } - - public String getColor() - { - return color; - } - public void setPosition(String position) - { - this.position = position; - } - - public String getPosition() - { - return position; - } - public void setType(String type) - { - this.type = type; - } - - public String getType() - { - return type; - } - public void setAlarmType(String alarmType) - { - this.alarmType = alarmType; - } - - public String getAlarmType() - { - return alarmType; - } - public void setAlarmTime(Date alarmTime) - { - this.alarmTime = alarmTime; - } - - public Date getAlarmTime() - { - return alarmTime; - } - public void setWatcher(String watcher) - { - this.watcher = watcher; - } - - public String getWatcher() - { - return watcher; - } - public void setViewTime(Date viewTime) - { - this.viewTime = viewTime; - } - - public Date getViewTime() - { - return viewTime; - } - - @Override - public String toString() { - return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) - .append("id", getId()) - .append("host", getHost()) - .append("tubeId", getTubeId()) - .append("tubeName", getTubeName()) - .append("tubeType", getTubeType()) - .append("pipeDiameter", getPipeDiameter()) - .append("color", getColor()) - .append("position", getPosition()) - .append("type", getType()) - .append("alarmType", getAlarmType()) - .append("alarmTime", getAlarmTime()) - .append("watcher", getWatcher()) - .append("createTime", getCreateTime()) - .append("viewTime", getViewTime()) - .toString(); - } + /** + * 寮曞褰曞儚url + */ + @Excel(name = "寮曞褰曞儚url") + private String recordUrl; } -- Gitblit v1.9.3