补充客户信息

This commit is contained in:
2026-05-03 09:36:00 +08:00
parent 7b2691b98f
commit 29b97839ba
10 changed files with 538 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
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 = "";
}