puzhibing
2023-06-30 f58cca364b731eac2d60a440ffaa804be3cd43fd
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
26
27
28
package com.stylefeng.guns.modular.system.pojo;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
 
import java.io.Serializable;
 
/**
 * @Description
 * @Author xiaochen
 * @Date 2022/6/29/02915:26
 */
@Component
@ConfigurationProperties(prefix = "gaode.map")
public class GaoDePoJo implements Serializable {
 
    @JsonProperty(value = "key")
    private String key;
 
    public String getKey() {
        return key;
    }
 
    public void setKey(String key) {
        this.key = key;
    }
}