package com.mzl.flower.config; import lombok.Data; import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.stereotype.Component; @Data @Component @ConfigurationProperties(prefix = "map.tengxun") public class TengxunMapProperties { /** * 腾讯地图地址行政区划查询接口 */ private String administrativeDivisionsUrl; }