蔡德晨 5 years ago
parent
commit
728d9fb63c
1 changed files with 49 additions and 0 deletions
  1. 49 0
      src/main/java/com/jeeplus/modules/sg/entity/FtData.java

+ 49 - 0
src/main/java/com/jeeplus/modules/sg/entity/FtData.java

@@ -0,0 +1,49 @@
+package com.jeeplus.modules.sg.entity;
+
+public class FtData {
+    private String id;
+    private String code;
+    private String state;
+    private Double fee;
+    private String type;
+
+    public String getType() {
+        return type;
+    }
+
+    public void setType(String type) {
+        this.type = type;
+    }
+
+    public String getId() {
+        return id;
+    }
+
+    public void setId(String id) {
+        this.id = id;
+    }
+
+    public String getCode() {
+        return code;
+    }
+
+    public void setCode(String code) {
+        this.code = code;
+    }
+
+    public String getState() {
+        return state;
+    }
+
+    public void setState(String state) {
+        this.state = state;
+    }
+
+    public Double getFee() {
+        return fee;
+    }
+
+    public void setFee(Double fee) {
+        this.fee = fee;
+    }
+}