From 2f55cebbad3dea187a5f91d16ec80a9677dab699 Mon Sep 17 00:00:00 2001
From: 13693261870 <252740454@qq.com>
Date: 星期三, 13 十一月 2024 11:16:53 +0800
Subject: [PATCH] 1

---
 src/main/java/com/yssh/entity/Qxsh.java |  101 ++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 101 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/yssh/entity/Qxsh.java b/src/main/java/com/yssh/entity/Qxsh.java
new file mode 100644
index 0000000..83245ba
--- /dev/null
+++ b/src/main/java/com/yssh/entity/Qxsh.java
@@ -0,0 +1,101 @@
+package com.yssh.entity;
+
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+
+@Data
+@ApiModel(value = "Qxsh",description = "Qxsh")
+public class Qxsh {
+    @ApiModelProperty(value = "涓婚敭")
+    private Integer id;
+
+    @ApiModelProperty(value = "鍚嶇О")
+    private String name;
+
+    @ApiModelProperty(value = "缁忓害")
+    private Double lon;
+
+    @ApiModelProperty(value = "绾害")
+    private Double lat;
+
+    @ApiModelProperty(value = "鏁板��")
+    private Double value;
+
+    @ApiModelProperty(value = "鏃堕棿")
+    private String time;
+
+    @ApiModelProperty(value = "鏄惁瀛樺湪婧簮")
+    private Integer isSuYuan;
+
+    @ApiModelProperty(value = "鏄惁瀛樺湪蹇�熸函婧�")
+    private Integer isFast;
+
+    public Qxsh() {
+        this.isSuYuan = 0;
+    }
+
+    public Integer getId() {
+        return id;
+    }
+
+    public void setId(Integer id) {
+        this.id = id;
+    }
+
+    public String getName() {
+        return name;
+    }
+
+    public void setName(String name) {
+        this.name = name;
+    }
+
+    public Double getLon() {
+        return lon;
+    }
+
+    public void setLon(Double lon) {
+        this.lon = lon;
+    }
+
+    public Double getLat() {
+        return lat;
+    }
+
+    public void setLat(Double lat) {
+        this.lat = lat;
+    }
+
+    public Double getValue() {
+        return value;
+    }
+
+    public void setValue(Double value) {
+        this.value = value;
+    }
+
+    public String getTime() {
+        return time;
+    }
+
+    public void setTime(String time) {
+        this.time = time;
+    }
+
+    public Integer getIsSuYuan() {
+        return isSuYuan;
+    }
+
+    public void setIsSuYuan(Integer isSuYuan) {
+        this.isSuYuan = isSuYuan;
+    }
+
+    public Integer getIsFast() {
+        return isFast;
+    }
+
+    public void setIsFast(Integer isFast) {
+        this.isFast = isFast;
+    }
+}

--
Gitblit v1.9.3