旧接口字段更新

This commit is contained in:
MHW
2026-04-17 15:45:44 +08:00
parent d310c5ae7b
commit 0cd142bb82
3 changed files with 27 additions and 27 deletions

View File

@@ -39,11 +39,11 @@ public class Treenodeinstance extends BaseEntity
private Long preconditionTempleteId;
@Excel(name = "节点介绍")
private String desciption;
private String nodeValue;
/** $column.columnComment */
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
private String uuid;
@Excel(name = "是否外部节点", readConverterExp = "0=否,1=是")
private String isExtern;
public void setId(Long id)
{
@@ -105,36 +105,33 @@ public class Treenodeinstance extends BaseEntity
return preconditionTempleteId;
}
public void setUuid(String uuid)
{
this.uuid = uuid;
public String getNodeValue() {
return nodeValue;
}
public String getUuid()
{
return uuid;
public void setNodeValue(String nodeValue) {
this.nodeValue = nodeValue;
}
public String getDesciption() {
return desciption;
public String getIsExtern() {
return isExtern;
}
public void setDesciption(String desciption) {
this.desciption = desciption;
public void setIsExtern(String isExtern) {
this.isExtern = isExtern;
}
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
.append("id", getId())
.append("treeId", getTreeId())
.append("templateId", getTemplateId())
.append("instanceName", getInstanceName())
.append("isRoot", getIsRoot())
.append("preconditionTempleteId", getPreconditionTempleteId())
.append("uuid", getUuid())
.append("desciption", getDesciption())
.toString();
return "Treenodeinstance{" +
"id=" + id +
", treeId=" + treeId +
", templateId=" + templateId +
", instanceName='" + instanceName + '\'' +
", isRoot=" + isRoot +
", preconditionTempleteId=" + preconditionTempleteId +
", nodeValue='" + nodeValue + '\'' +
", isExtern='" + isExtern + '\'' +
'}';
}
}