package com.jpsoft.bus.config; import lombok.Data; import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.stereotype.Component; @Component @ConfigurationProperties(prefix = "gps") @Data public class GpsParamConfig { private String key; }