解决节点参数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

5
.gitignore vendored
View File

@@ -53,6 +53,11 @@ nbdist/
!*/build/*.xml !*/build/*.xml
modeler/pnpm-lock.yaml modeler/pnpm-lock.yaml
# Application configuration files (may contain sensitive info)
**/application.yml
**/application-*.yml
!**/application-example.yml
###################################################################### ######################################################################
# Mock bundled cache files # Mock bundled cache files
**/*.bundled_*.mjs **/*.bundled_*.mjs

View File

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