代码调整

This commit is contained in:
2022-10-26 11:41:07 +08:00
parent 225cefd1a5
commit 0ae02d157a
5 changed files with 42 additions and 30 deletions

View File

@@ -23,5 +23,7 @@ public interface ServerInfo {
String USER = "user-boot";
String JOB = "job-admin";
String QUALITY = "quality-boot";
String HARMONIC_PREPARE = "harmonic-prepare";
String EVENT_PREPARE = "event-prepare";
}

View File

@@ -65,6 +65,10 @@ public interface InfluxDBSqlConstant {
String QM = "'";
String LBK = "(";
String RBK = ")";
String GT = ">";
String GE = ">=";
String LT = "<";
String LE = "<=";
/**
* influxDB函数拼接

View File

@@ -16,7 +16,7 @@ public class WebConfig {
* 配置请求对象
*/
@Bean
public RestTemplate create() {
public RestTemplate restTemplate() {
return new RestTemplate();
}