| 12345678910111213141516171819202122232425262728293031323334353637 |
- package com.ydtech.components.aliyun;
- import lombok.Data;
- import org.springframework.boot.context.properties.ConfigurationProperties;
- import org.springframework.stereotype.Component;
- @Data
- @Component
- @ConfigurationProperties(prefix = "aliyun.api")
- public class AliyunApiProperties {
- /**
- *
- */
- private String accessKeyId;
- /**
- *
- */
- private String accessKeySecret;
- /**
- * 链接
- */
- private String endpoint;
- /**
- * 签名
- */
- private String signName;
- /**
- * 模版
- */
- private String templateId;
- }
|