Files
smartDriveEE/src/main/java/com/rj/config/AmapProperties.java
2026-05-03 09:36:00 +08:00

18 lines
409 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.rj.config;
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
/**
* 高德开放平台 Web 服务 Key地理编码、周边搜索等
*/
@Data
@ConfigurationProperties(prefix = "amap")
public class AmapProperties {
/**
* Web 服务类型的 Key对应控制台「应用 Key」。
*/
private String webServiceKey = "";
}