From 4c2742fe93e3a7791168433285363e743ad03ab6 Mon Sep 17 00:00:00 2001
From: 13693261870 <252740454@qq.com>
Date: 星期五, 23 六月 2023 14:49:58 +0800
Subject: [PATCH] 添加溯源700表

---
 src/main/java/com/yssh/entity/SuYuan700.java |  169 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 169 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..ce5e70a
--- /dev/null
+++ b/src/main/java/com/yssh/entity/SuYuan700.java
@@ -0,0 +1,169 @@
+package com.yssh.entity;
+
+import lombok.Data;
+
+import java.io.Serializable;
+import java.util.Date;
+
+/**
+ * 婧簮700琛�
+ * @author www
+ * @date 2023-06-23
+ */
+@Data
+public class SuYuan700 implements Serializable {
+    private static final long serialVersionUID = 2023062302487367361L;
+
+    private Long id;
+
+    private String su_yuan_id;
+
+    private String addr1;
+
+    private Double odds1;
+
+    private Double x1;
+
+    private Double y1;
+
+    private String addr2;
+
+    private Double odds2;
+
+    private Double x2;
+
+    private Double y2;
+
+    private String addr3;
+
+    private Double odds3;
+
+    private Double x3;
+
+    private Double y3;
+
+    private Date createTime;
+
+    public SuYuan700() {
+    }
+
+    public Long getId() {
+        return id;
+    }
+
+    public void setId(Long id) {
+        this.id = id;
+    }
+
+    public String getSu_yuan_id() {
+        return su_yuan_id;
+    }
+
+    public void setSu_yuan_id(String su_yuan_id) {
+        this.su_yuan_id = su_yuan_id;
+    }
+
+    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