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;
|
}
|
}
|