dangsn
2024-12-03 9cbbafbfed6cf1ac4e1801123f212642fadcc980
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.vci.properties;
 
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;
 
/**
 * @Description
 * @Author dangsn
 * @Date 2024/11/28 17:40
 */
@Configuration
@ConfigurationProperties(prefix = "plt")
public class OsConfig {
 
    private boolean exportSecretGrade;
 
    public boolean isExportSecretGrade() {
        return exportSecretGrade;
    }
 
    public void setExportSecretGrade(boolean exportSecretGrade) {
        this.exportSecretGrade = exportSecretGrade;
    }
}