123ea35ce511f2e28a0d7efe74a0b5513f06c8bc.svn-base 541 B

1234567891011121314151617181920212223242526
  1. package org.jeecg.config.thirdapp;
  2. import lombok.Data;
  3. import org.springframework.boot.context.properties.ConfigurationProperties;
  4. import org.springframework.context.annotation.Configuration;
  5. /**
  6. * 第三方APP配置
  7. *
  8. * @author sunjianlei
  9. */
  10. @Data
  11. @Configuration
  12. @ConfigurationProperties(prefix = "third-app.type")
  13. public class ThirdAppTypeConfig {
  14. /**
  15. * 对应企业微信配置
  16. */
  17. private ThirdAppTypeItemVo WECHAT_ENTERPRISE;
  18. /**
  19. * 对应钉钉配置
  20. */
  21. private ThirdAppTypeItemVo DINGTALK;
  22. }