|
@@ -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;
|
|
|
+ }
|
|
|
+}
|