海康汽车服务

HatcConfig.java 398B

12345678910111213141516
  1. package com.njyunzhi.nanyang.config;
  2. import lombok.Data;
  3. import org.springframework.boot.context.properties.ConfigurationProperties;
  4. import org.springframework.stereotype.Component;
  5. @Data
  6. @Component
  7. @ConfigurationProperties(prefix = "hatc")
  8. public class HatcConfig {
  9. Boolean enable;
  10. String cmsAddress;
  11. Integer cmsPort;
  12. String hatcAccount;
  13. String hatcSecret;
  14. }