wlzboy
1 天以前 08f95b2f159b56fa3bd4f4b348855989de8aa456
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.ruoyi.common.config;
 
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;
 
/**
 * 天地图配置类
 */
@Configuration
@ConfigurationProperties(prefix = "tianditu.map")
public class TiandituMapConfig {
    
    /**
     * 天地图API Key (tk参数)
     */
    private String tk;
 
    public String getTk() {
        return tk;
    }
 
    public void setTk(String tk) {
        this.tk = tk;
    }
}