package org.springblade.common.config;
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
import org.springframework.stereotype.Component;
|
|
/**
|
* ftp 配置路径
|
*
|
* @author zhongrj
|
* @since 2021-9-24
|
*/
|
@ConfigurationProperties(prefix = "qcode")
|
@Component
|
public class qCodeConfig {
|
|
/**
|
* sql connect
|
*/
|
public static String locaPath;
|
|
public void setLocaPath(String locaPath) {
|
qCodeConfig.locaPath = locaPath;
|
}
|
}
|