| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- package com.izouma.nineth.config;
- import lombok.Data;
- import org.springframework.boot.context.properties.ConfigurationProperties;
- import org.springframework.stereotype.Component;
- /**
- * 四维支付配置
- *
- */
- @Data
- @Component
- @ConfigurationProperties(prefix = "siweipay")
- public class SiweipayProperties {
- /**
- * 基础接口地址
- */
- private String baseUrl;
- /**
- * 结果通知地址
- */
- private String notifyUrl;
- /**
- * 应用ID
- */
- private String appId;
- /**
- * 应用密钥
- */
- private String appKey;
- /**
- * 是否调试
- */
- private boolean debug;
- }
|