蔡德晨 il y a 5 ans
Parent
commit
78e6f10872
1 fichiers modifiés avec 31 ajouts et 0 suppressions
  1. 31 0
      src/main/java/com/jeeplus/modules/sg/entity/TzData.java

+ 31 - 0
src/main/java/com/jeeplus/modules/sg/entity/TzData.java

@@ -0,0 +1,31 @@
+package com.jeeplus.modules.sg.entity;
+
+public class TzData {
+    private String id;
+    private String type;
+    private Double fee;
+
+    public String getId() {
+        return id;
+    }
+
+    public void setId(String id) {
+        this.id = id;
+    }
+
+    public String getType() {
+        return type;
+    }
+
+    public void setType(String type) {
+        this.type = type;
+    }
+
+    public Double getFee() {
+        return fee;
+    }
+
+    public void setFee(Double fee) {
+        this.fee = fee;
+    }
+}