pms技术监督调整
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
package com.njcn.process.pojo.dto;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* pqs
|
||||
*
|
||||
* @author cdf
|
||||
* @date 2024/3/18
|
||||
*/
|
||||
@Data
|
||||
@Builder
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
public class ThsStrategyBindDTO {
|
||||
|
||||
/**
|
||||
* 监测点标签id,监测点id
|
||||
*/
|
||||
private String keyId;
|
||||
|
||||
/**
|
||||
* 指标集合
|
||||
*/
|
||||
private List<String> targetIds;
|
||||
|
||||
/**
|
||||
* 0.与 1.或
|
||||
*/
|
||||
private Integer operation;
|
||||
|
||||
|
||||
/**
|
||||
* 0.监测点标签 1.监测点
|
||||
*/
|
||||
private Integer type;
|
||||
}
|
||||
@@ -30,5 +30,8 @@ public class SuperviseParam {
|
||||
@NotNull(message = "类型不可为空")
|
||||
private Integer type;
|
||||
|
||||
@ApiModelProperty(name = "reDate", value = "用于补招时间")
|
||||
private String reDate;
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -58,5 +58,5 @@ public class RMpOnlineMonitorOverproofProblem implements Serializable {
|
||||
/**
|
||||
* 告警持续时间
|
||||
*/
|
||||
private String warnLastTime;
|
||||
private Double warnLastTime;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user