| package cc.mrbird.febs.common.properties; | 
|   | 
| import lombok.Data; | 
| import org.springframework.boot.context.properties.ConfigurationProperties; | 
| import org.springframework.context.annotation.Configuration; | 
|   | 
| @Data | 
| @Configuration | 
| @ConfigurationProperties(prefix = "xcx") | 
| public class XcxProperties { | 
|   | 
|     private String wecharLoginUrl; | 
|   | 
|     private String xcxAppid; | 
|   | 
|     private String xcxSecret; | 
|   | 
|     private String wecharPaynotifyUrl; | 
|   | 
|     private String wecharRechargePaynotifyUrl; | 
|     //测试支付的开关,true:支付0.01元 | 
|     private Boolean debug; | 
|     //支付证书地址 | 
|     private String certLocalPath; | 
|     //微信商户号 | 
|     private String wecharpayMchid; | 
|     //支付秘钥 | 
|     private String wecharpaySecret; | 
|     //支付秘钥V3 | 
|     private String wecharpaySecretV3; | 
|     //高德KEY | 
|     private String gaodeKey; | 
|     //高德serviceName | 
|     private String serviceName; | 
|   | 
| } |