GpsParamConfig.java 292 B

123456789101112
  1. package com.jpsoft.bus.config;
  2. import lombok.Data;
  3. import org.springframework.boot.context.properties.ConfigurationProperties;
  4. import org.springframework.stereotype.Component;
  5. @Component
  6. @ConfigurationProperties(prefix = "gps")
  7. @Data
  8. public class GpsParamConfig {
  9. private String key;
  10. }