CtccSmsConfig.java 390 B

1234567891011121314151617
  1. package com.xjrsoft.config;
  2. import lombok.Data;
  3. import org.springframework.boot.context.properties.ConfigurationProperties;
  4. import org.springframework.stereotype.Component;
  5. /**
  6. * 电信三网短信配置
  7. */
  8. @Data
  9. @Component
  10. @ConfigurationProperties("xjrsoft.ctccsms")
  11. public class CtccSmsConfig {
  12. private String appKey;
  13. private String appSecret;
  14. private String signature;
  15. }