Browse Source

【英唐电子发票】

DINGYL 1 year ago
parent
commit
5782beb855
1 changed files with 48 additions and 1 deletions
  1. 48 1
      src/main/java/com/uas/eis/config/DonlimConfig.java

+ 48 - 1
src/main/java/com/uas/eis/config/DonlimConfig.java

@@ -6,8 +6,55 @@ import org.springframework.stereotype.Component;
 
 
 @Component
 @Component
 @ConfigurationProperties(prefix = "extral.donlim")
 @ConfigurationProperties(prefix = "extral.donlim")
-@Data
 public class DonlimConfig {
 public class DonlimConfig {
+    public String getRoute() {
+        return route;
+    }
+
+    public void setRoute(String route) {
+        this.route = route;
+    }
+
+    public String getAppKey() {
+        return appKey;
+    }
+
+    public void setAppKey(String appKey) {
+        this.appKey = appKey;
+    }
+
+    public String getAppSecret() {
+        return appSecret;
+    }
+
+    public void setAppSecret(String appSecret) {
+        this.appSecret = appSecret;
+    }
+
+    public String getToken() {
+        return token;
+    }
+
+    public void setToken(String token) {
+        this.token = token;
+    }
+
+    public String getTaxnum() {
+        return taxnum;
+    }
+
+    public void setTaxnum(String taxnum) {
+        this.taxnum = taxnum;
+    }
+
+    public boolean isProd() {
+        return true;
+    }
+
+    public void setProd(boolean prod) {
+        isProd = prod;
+    }
+
     /**
     /**
      * 请求路径
      * 请求路径
      */
      */