终端重要日志功能开发

This commit is contained in:
2025-04-08 08:57:43 +08:00
parent c5e4562cc9
commit d3f7fec200
5 changed files with 46 additions and 14 deletions

View File

@@ -62,7 +62,16 @@ public interface Param {
String pst = "pst$DataPlt";
String ADD ="add";
String UPDATE ="update";
String DEL ="del";
String QUERY = "query";
String ADD_ZN = "新增";
String UPDATE_ZN = "修改";
String DEL_ZN = "删除";
String QUERY_ZN ="查询";
String UNKONOW ="未知";
Integer YEAR = 1;

View File

@@ -27,6 +27,9 @@ public class VerifyTargetVO {
@ApiModelProperty(value = "异常测点集合",name = "ids")
private Set<String> ids;
@ApiModelProperty(value = "类型",name = "remark")
private String remark;
@ApiModelProperty(value = "排序",name = "sort")
private Integer sort;
}