mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-06-15 20:59:59 +08:00
29 lines
483 B
Java
29 lines
483 B
Java
|
|
package com.jsowell.adapay.config;
|
||
|
|
|
||
|
|
import lombok.Getter;
|
||
|
|
import lombok.Setter;
|
||
|
|
import org.springframework.beans.factory.InitializingBean;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* adapay配置类
|
||
|
|
*/
|
||
|
|
@Getter
|
||
|
|
@Setter
|
||
|
|
public abstract class AbstractAdapayConfig implements InitializingBean {
|
||
|
|
|
||
|
|
private boolean debugFlag;
|
||
|
|
|
||
|
|
private boolean prodMode;
|
||
|
|
|
||
|
|
private String apiKey;
|
||
|
|
|
||
|
|
private String mockApiKey;
|
||
|
|
|
||
|
|
private String rsaPrivateKey;
|
||
|
|
|
||
|
|
private String adapayAppId;
|
||
|
|
|
||
|
|
private String wechatAppId;
|
||
|
|
|
||
|
|
}
|