2022-02-09 10:48:29 +08:00
|
|
|
package com.xjs.properties;
|
2022-01-16 20:42:59 +08:00
|
|
|
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
|
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 高德秘钥
|
|
|
|
|
* @author xiejs
|
|
|
|
|
* @since 2022-01-16
|
|
|
|
|
*/
|
|
|
|
|
@Data
|
|
|
|
|
@ConfigurationProperties(prefix = "gaode.open")
|
|
|
|
|
@Component
|
|
|
|
|
public class GaodeProperties {
|
|
|
|
|
|
|
|
|
|
private String key;
|
|
|
|
|
}
|