Ver código fonte

优化代码

Your Name 2 anos atrás
pai
commit
284acb892e

+ 10 - 0
java110-bean/src/main/java/com/java110/dto/payFeeQrcode/PayFeeQrcodeDto.java

@@ -35,6 +35,8 @@ public class PayFeeQrcodeDto extends PageDto implements Serializable {
 
     private String statusCd = "0";
 
+    private String feeType;
+
 
     public String getCreateStaffName() {
         return createStaffName;
@@ -148,4 +150,12 @@ public class PayFeeQrcodeDto extends PageDto implements Serializable {
     public void setState(String state) {
         this.state = state;
     }
+
+    public String getFeeType() {
+        return feeType;
+    }
+
+    public void setFeeType(String feeType) {
+        this.feeType = feeType;
+    }
 }

+ 10 - 0
java110-bean/src/main/java/com/java110/po/payFeeQrcode/PayFeeQrcodePo.java

@@ -42,6 +42,8 @@ public class PayFeeQrcodePo implements Serializable {
 
     private String state;
 
+    private String feeType;
+
     public String getCreateStaffName() {
         return createStaffName;
     }
@@ -137,4 +139,12 @@ public class PayFeeQrcodePo implements Serializable {
     public void setState(String state) {
         this.state = state;
     }
+
+    public String getFeeType() {
+        return feeType;
+    }
+
+    public void setFeeType(String feeType) {
+        this.feeType = feeType;
+    }
 }

+ 1 - 0
service-fee/src/main/java/com/java110/fee/cmd/payFeeQrcode/SavePayFeeQrcodeCmd.java

@@ -68,6 +68,7 @@ public class SavePayFeeQrcodeCmd extends Cmd {
         Assert.hasKeyAndValue(reqJson, "smsValidate", "请求报文中未包含smsValidate");
         Assert.hasKeyAndValue(reqJson, "customFee", "请求报文中未包含customFee");
         Assert.hasKeyAndValue(reqJson, "preFee", "请求报文中未包含preFee");
+        Assert.hasKeyAndValue(reqJson, "feeType", "请求报文中未包含feeType");
         Assert.hasKeyAndValue(reqJson, "content", "请求报文中未包含content");
 
     }