修改 influxdb query函数
This commit is contained in:
@@ -10,7 +10,7 @@ import lombok.Data;
|
||||
@Data
|
||||
public class CPoint {
|
||||
|
||||
private ControlLimit controlLimit;
|
||||
private ControlLimitDetail controlLimit;
|
||||
|
||||
private Integer position;
|
||||
|
||||
@@ -19,7 +19,7 @@ public class CPoint {
|
||||
|
||||
private String name;
|
||||
|
||||
public CPoint(ControlLimit controlLimit, Integer position, Double value, String name) {
|
||||
public CPoint(ControlLimitDetail controlLimit, Integer position, Double value, String name) {
|
||||
this.controlLimit = controlLimit;
|
||||
this.position = position;
|
||||
this.value = value;
|
||||
|
||||
@@ -15,7 +15,7 @@ import java.util.Set;
|
||||
@Data
|
||||
public class NPPoint{
|
||||
|
||||
private ControlLimit controlLimit;
|
||||
private ControlLimitDetail controlLimit;
|
||||
|
||||
private Integer position;
|
||||
|
||||
@@ -23,7 +23,7 @@ public class NPPoint{
|
||||
private Integer value;
|
||||
private String name;
|
||||
|
||||
public NPPoint(ControlLimit controlLimit, Integer position, Integer value,String name) {
|
||||
public NPPoint(ControlLimitDetail controlLimit, Integer position, Integer value,String name) {
|
||||
this.controlLimit = controlLimit;
|
||||
this.position = position;
|
||||
this.value = value;
|
||||
|
||||
@@ -10,7 +10,7 @@ import lombok.Data;
|
||||
@Data
|
||||
public class PPoint {
|
||||
|
||||
private ControlLimit controlLimit;
|
||||
private ControlLimitDetail controlLimit;
|
||||
|
||||
private Integer position;
|
||||
|
||||
@@ -19,7 +19,7 @@ public class PPoint {
|
||||
|
||||
private String name;
|
||||
|
||||
public PPoint(ControlLimit controlLimit, Integer position, Double value,String name) {
|
||||
public PPoint(ControlLimitDetail controlLimit, Integer position, Double value,String name) {
|
||||
this.controlLimit = controlLimit;
|
||||
this.position = position;
|
||||
this.value = value;
|
||||
|
||||
@@ -10,7 +10,7 @@ import lombok.Data;
|
||||
@Data
|
||||
public class UPoint {
|
||||
|
||||
private ControlLimit controlLimit;
|
||||
private ControlLimitDetail controlLimit;
|
||||
|
||||
private Integer position;
|
||||
|
||||
@@ -19,7 +19,7 @@ public class UPoint {
|
||||
|
||||
private String name;
|
||||
|
||||
public UPoint(ControlLimit controlLimit, Integer position, Double value, String name) {
|
||||
public UPoint(ControlLimitDetail controlLimit, Integer position, Double value, String name) {
|
||||
this.controlLimit = controlLimit;
|
||||
this.position = position;
|
||||
this.value = value;
|
||||
|
||||
Reference in New Issue
Block a user