| 12345678910111213141516171819202122232425262728293031 |
- package com.ydtech.config.properties;
- import lombok.Data;
- import org.springframework.boot.context.properties.ConfigurationProperties;
- import org.springframework.stereotype.Component;
- @Data
- @Component
- @ConfigurationProperties(prefix = "bohai.api")
- public class BohaiApiConfigurationProperties {
- // 请求地址
- private String url;
- // 我司公钥
- private String selfPublicKey;
- // 我司私钥
- private String selfPrivateKey;
- // 渤海方公钥
- private String boHaiPublicKey;
- // 合作方代码,由渤海分配
- private String insurerCode;
- // 配置code
- private String sysSourceCode;
- }
|