| | |
| | | import lombok.Data; |
| | | import org.springframework.boot.context.properties.ConfigurationProperties; |
| | | import org.springframework.context.annotation.Configuration; |
| | | import org.springframework.stereotype.Component; |
| | | |
| | | @Data |
| | | @Configuration |
| | | @ConfigurationProperties(prefix = "cms.file") |
| | | @ConfigurationProperties(prefix = "cms") |
| | | public class CmsProperties { |
| | | |
| | | private String downloadPath; |
| | | |
| | | /** |
| | | * 模板保存地址 |
| | | */ |
| | | private String templatePath; |
| | | |
| | | /** |
| | | * 静态文件保存地址 |
| | | */ |
| | | private String staticPath; |
| | | |
| | | /** |
| | | * html输出地址 |
| | | */ |
| | | private String outputPath; |
| | | |
| | | /** |
| | | * 静态文件访问地址 |
| | | */ |
| | | private String staticUrl; |
| | | |
| | | /** |
| | | * api请求地址 |
| | | */ |
| | | private String apiUrl; |
| | | } |