区域报告接口

This commit is contained in:
zhuxinyu
2023-04-21 00:38:42 +08:00
parent 4119696ff3
commit 4457b0c076
10 changed files with 73 additions and 20 deletions

View File

@@ -62,5 +62,14 @@ public class EventDictParam {
private String id;
/**
* 0.监测点模板 1.区域模板
*/
@ApiModelProperty("type")
@NotBlank(message = ValidMessage.DICT_TYPE_ID_NOT_BLANK)
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = ValidMessage.ID_FORMAT_ERROR)
private String type;
}
}

View File

@@ -33,4 +33,6 @@ public class EventReportDictVO implements Serializable {
@ApiModelProperty("子级")
List<EventReportDictVO> children;
private Boolean flag;
}