You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
888 B
41 lines
888 B
package com.bweb.config;
|
|
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
|
import org.springframework.context.annotation.PropertySource;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
@Component("sysConfig")
|
|
@ConfigurationProperties
|
|
@PropertySource("classpath:/config.properties")
|
|
public class SysConfig {
|
|
|
|
private String fileUrl;
|
|
|
|
private String cmsPath;
|
|
|
|
private String agentQrCode;
|
|
|
|
public String getFileUrl() {
|
|
return fileUrl;
|
|
}
|
|
|
|
public void setFileUrl(String fileUrl) {
|
|
this.fileUrl = fileUrl;
|
|
}
|
|
|
|
public String getCmsPath() {
|
|
return cmsPath;
|
|
}
|
|
|
|
public void setCmsPath(String cmsPath) {
|
|
this.cmsPath = cmsPath;
|
|
}
|
|
|
|
public String getAgentQrCode() {
|
|
return agentQrCode;
|
|
}
|
|
|
|
public void setAgentQrCode(String agentQrCode) {
|
|
this.agentQrCode = agentQrCode;
|
|
}
|
|
}
|
|
|