|
@@ -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;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* 请求路径
|
|
* 请求路径
|
|
|
*/
|
|
*/
|