解决节点参数int默认值sql执行错误问题
This commit is contained in:
5
.gitignore
vendored
5
.gitignore
vendored
@@ -53,6 +53,11 @@ nbdist/
|
||||
!*/build/*.xml
|
||||
modeler/pnpm-lock.yaml
|
||||
|
||||
# Application configuration files (may contain sensitive info)
|
||||
**/application.yml
|
||||
**/application-*.yml
|
||||
!**/application-example.yml
|
||||
|
||||
######################################################################
|
||||
# Mock bundled cache files
|
||||
**/*.bundled_*.mjs
|
||||
|
||||
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user