mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-06-17 21:59:52 +08:00
多商户配置
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
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;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user