- package com.njyunzhi.nanyang.config;
-
- import lombok.Data;
- import org.springframework.boot.context.properties.ConfigurationProperties;
- import org.springframework.stereotype.Component;
-
- @Data
- @Component
- @ConfigurationProperties(prefix = "hatc")
- public class HatcConfig {
- Boolean enable;
- String cmsAddress;
- Integer cmsPort;
- String hatcAccount;
- String hatcSecret;
- }
|