SmsModel.java 587 B

1234567891011121314151617181920212223242526272829
  1. package jnpf.base;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. /**
  5. * 发送短信配置模型
  6. *
  7. * @版本: V3.1.0
  8. * @版权: 引迈信息技术有限公司(https://www.jnpfsoft.com)
  9. * @作者: JNPF开发平台组
  10. * @日期: 2021/4/20 14:22
  11. */
  12. @Data
  13. public class SmsModel {
  14. /**
  15. * 阿里
  16. */
  17. private String aliAccessKey;
  18. private String aliSecret;
  19. /**
  20. * 腾讯
  21. */
  22. private String tencentSecretId;
  23. private String tencentSecretKey;
  24. private String tencentAppId;
  25. private String tencentAppKey;
  26. }