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;
|
}
|
}
|