UPDATE: fk

This commit is contained in:
libertyspy
2026-02-08 20:14:46 +08:00
parent d8c429d000
commit e12c3c0302
3 changed files with 87 additions and 1 deletions

View File

@@ -42,7 +42,20 @@ public class Nodetemplate extends BaseEntity
@Excel(name = "模版类型节点模版或者条件判断例如“node”precondition“")
private String templeteType;
public void setId(Long id)
public Nodetemplate() {
}
public Nodetemplate(Nodetemplate template) {
this.id = template.id;
this.type = template.type;
this.name = template.name;
this.logicHandler = template.logicHandler;
this.description = template.description;
this.englishName = template.englishName;
this.templeteType = template.templeteType;
}
public void setId(Long id)
{
this.id = id;
}