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/SuYuan700.java |  182 +++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 182 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/yssh/entity/SuYuan700.java b/src/main/java/com/yssh/entity/SuYuan700.java
new file mode 100644
index 0000000..247881b
--- /dev/null
+++ b/src/main/java/com/yssh/entity/SuYuan700.java
@@ -0,0 +1,182 @@
+package com.yssh.entity;
+
+import com.fasterxml.jackson.annotation.JsonFormat;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+
+import java.io.Serializable;
+import java.util.Date;
+
+@Data
+public class SuYuan700 implements Serializable {
+    private static final long serialVersionUID = 2023062302487367361L;
+
+    @ApiModelProperty(value = "涓婚敭ID")
+    private Long id;
+
+    @ApiModelProperty(value = "婧簮ID")
+    private String suYuanId;
+
+    @ApiModelProperty(value = "鍦板潃1")
+    private String addr1;
+
+    @ApiModelProperty(value = "姒傜巼1")
+    private Double odds1;
+
+    @ApiModelProperty(value = "X1")
+    private Double x1;
+
+    @ApiModelProperty(value = "Y1")
+    private Double y1;
+
+    @ApiModelProperty(value = "鍦板潃2")
+    private String addr2;
+
+    @ApiModelProperty(value = "姒傜巼2")
+    private Double odds2;
+
+    @ApiModelProperty(value = "X2")
+    private Double x2;
+
+    @ApiModelProperty(value = "Y2")
+    private Double y2;
+
+    @ApiModelProperty(value = "鍦板潃3")
+    private String addr3;
+
+    @ApiModelProperty(value = "姒傜巼3")
+    private Double odds3;
+
+    @ApiModelProperty(value = "X3")
+    private Double x3;
+
+    @ApiModelProperty(value = "Y3")
+    private Double y3;
+
+    @ApiModelProperty(value = "鏃堕棿")
+    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
+    private Date createTime;
+
+    public SuYuan700() {
+    }
+
+    public Long getId() {
+        return id;
+    }
+
+    public void setId(Long id) {
+        this.id = id;
+    }
+
+    public String getSuYuanId() {
+        return suYuanId;
+    }
+
+    public void setSuYuanId(String suYuanId) {
+        this.suYuanId = suYuanId;
+    }
+
+    public String getAddr1() {
+        return addr1;
+    }
+
+    public void setAddr1(String addr1) {
+        this.addr1 = addr1;
+    }
+
+    public Double getOdds1() {
+        return odds1;
+    }
+
+    public void setOdds1(Double odds1) {
+        this.odds1 = odds1;
+    }
+
+    public Double getX1() {
+        return x1;
+    }
+
+    public void setX1(Double x1) {
+        this.x1 = x1;
+    }
+
+    public Double getY1() {
+        return y1;
+    }
+
+    public void setY1(Double y1) {
+        this.y1 = y1;
+    }
+
+    public String getAddr2() {
+        return addr2;
+    }
+
+    public void setAddr2(String addr2) {
+        this.addr2 = addr2;
+    }
+
+    public Double getOdds2() {
+        return odds2;
+    }
+
+    public void setOdds2(Double odds2) {
+        this.odds2 = odds2;
+    }
+
+    public Double getX2() {
+        return x2;
+    }
+
+    public void setX2(Double x2) {
+        this.x2 = x2;
+    }
+
+    public Double getY2() {
+        return y2;
+    }
+
+    public void setY2(Double y2) {
+        this.y2 = y2;
+    }
+
+    public String getAddr3() {
+        return addr3;
+    }
+
+    public void setAddr3(String addr3) {
+        this.addr3 = addr3;
+    }
+
+    public Double getOdds3() {
+        return odds3;
+    }
+
+    public void setOdds3(Double odds3) {
+        this.odds3 = odds3;
+    }
+
+    public Double getX3() {
+        return x3;
+    }
+
+    public void setX3(Double x3) {
+        this.x3 = x3;
+    }
+
+    public Double getY3() {
+        return y3;
+    }
+
+    public void setY3(Double y3) {
+        this.y3 = y3;
+    }
+
+    public Date getCreateTime() {
+        return createTime;
+    }
+
+    public void setCreateTime(Date createTime) {
+        this.createTime = createTime;
+    }
+}

--
Gitblit v1.9.3