zrj
2024-08-30 d88ce8f933df6a533eddb06f0f2e340a2c697001
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 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;
    }
}