|
@@ -1,5 +1,6 @@
|
|
|
package com.zhongshu.payment.server.core.pay.impl.unionFrictionlessPay.config;
|
|
package com.zhongshu.payment.server.core.pay.impl.unionFrictionlessPay.config;
|
|
|
|
|
|
|
|
|
|
+import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
import lombok.Data;
|
|
import lombok.Data;
|
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
import org.springframework.context.annotation.Configuration;
|
|
@@ -17,13 +18,16 @@ import org.springframework.stereotype.Component;
|
|
|
@ConfigurationProperties(prefix = "withdraw")
|
|
@ConfigurationProperties(prefix = "withdraw")
|
|
|
public class WithdrawConfig {
|
|
public class WithdrawConfig {
|
|
|
|
|
|
|
|
- public String appId = "";
|
|
|
|
|
|
|
+ private String appId = "";
|
|
|
|
|
|
|
|
- public String appKey = "";
|
|
|
|
|
|
|
+ private String appKey = "";
|
|
|
|
|
|
|
|
// 系统编号
|
|
// 系统编号
|
|
|
- public String sysid = "";
|
|
|
|
|
|
|
+ private String sysid = "";
|
|
|
|
|
|
|
|
// 多应用类型
|
|
// 多应用类型
|
|
|
- public String appType = "74";
|
|
|
|
|
|
|
+ private String appType = "74";
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "通知地址")
|
|
|
|
|
+ private String withdrawNotify;
|
|
|
}
|
|
}
|