mirror of
https://github.com/zfile-dev/zfile.git
synced 2025-04-19 05:34:52 +00:00
21 lines
481 B
Java
21 lines
481 B
Java
package im.zhaojun.zfile.common.config;
|
|
|
|
import lombok.Data;
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
|
import org.springframework.boot.context.properties.EnableConfigurationProperties;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
/**
|
|
* @author zhaojun
|
|
* @version V1.0
|
|
* @date 2022-4-26
|
|
*/
|
|
@Data
|
|
@EnableConfigurationProperties
|
|
@Component
|
|
@ConfigurationProperties(prefix = "zfile")
|
|
public class ZFileProperties {
|
|
|
|
private boolean debug;
|
|
|
|
} |