解决节点参数int默认值sql执行错误问题

This commit is contained in:
MHW
2026-04-21 11:26:26 +08:00
parent abe0315536
commit ec716df946
2 changed files with 14 additions and 8 deletions

View File

@@ -32,7 +32,7 @@ public class Nodeparameter extends BaseEntity
@Excel(name = "节点实例设置的具体参数值 (覆盖模板默认值)")
private String value;
private int groupIndex;
private Integer groupIndex;
public void setId(Long id)
{
@@ -48,6 +48,14 @@ public class Nodeparameter extends BaseEntity
return treeId;
}
public Integer getGroupIndex() {
return groupIndex;
}
public void setGroupIndex(Integer groupIndex) {
this.groupIndex = groupIndex;
}
public void setTreeId(Long treeId) {
this.treeId = treeId;
}
@@ -82,13 +90,6 @@ public class Nodeparameter extends BaseEntity
return value;
}
public int getGroupIndex() {
return groupIndex;
}
public void setGroupIndex(int groupIndex) {
this.groupIndex = groupIndex;
}
@Override
public String toString() {