22 lines
459 B
Java
22 lines
459 B
Java
package com.qgs.dc.influx.config;
|
|
|
|
import lombok.Data;
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
/**
|
|
* @Desc: ""
|
|
* @Author: caixiang
|
|
* @DATE: 2022/11/23 10:53
|
|
*/
|
|
|
|
@Data
|
|
@Configuration
|
|
@ConfigurationProperties(prefix = "influx")
|
|
public class InfluxConfig {
|
|
private String url;
|
|
private String token;
|
|
private String org;
|
|
private String bucket;
|
|
}
|