修改 预警/告警事务的数据生成策略

This commit is contained in:
Lee
2023-03-22 18:55:02 +08:00
parent 883524e182
commit 8c3567a765
14 changed files with 359 additions and 202 deletions

View File

@@ -12,10 +12,17 @@ import java.util.List;
public class SourceSteadyIndicator {
private String id;
/**
* 干扰源数据字典Id
*/
private String interferenceSource;
/**
* 0 是与 ,1 是或
*/
private Integer operation;
/**
* 指标参数数据字典Id集合
*/
private List<String> steadyIndicator;
/**
@@ -30,4 +37,8 @@ public class SourceSteadyIndicator {
* 类型0预警1告警
*/
private Integer type;
/**
* 监测点id
*/
private String monitorId;
}

View File

@@ -51,5 +51,10 @@ public class ThsStrategyVo {
* 干扰源类型id
*/
private List<String> interferenceSource;
/**
* 监测点id
*/
private String monitorId;
}