fix
Helius
2022-07-07 9d7e89230b65b1da5e96d717c6388aa5e6d7201f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.xcong.farmer.cms.configurations.properties;
 
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;
 
@Data
@Configuration
@ConfigurationProperties(prefix = "cms")
public class CmsProperties {
 
    private String templatePath;
 
    private String staticPath;
 
    private String outputPath;
 
    private String staticUrl;
 
    private String baseUrl;
}