package com.casic.missiles.config; import lombok.Data; import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.stereotype.Component; @Data @Component @ConfigurationProperties(prefix = "smartcity.sluicewell.coordinate-convert") public class DeviceApiProperties { private String baiduUrl = null; private String baiduAk = null; private String gaodeUrl = null; private String gaodeKey = null; }