@@ -50,6 +50,7 @@ public class TreeSelect implements Serializable
public TreeSelect(WorkroderType Type) {
this.id=Type.getId();
this.label=Type.getTypeName();
+ this.code=Type.getTypeCode();
this.children=Type.getChildren().stream().map(TreeSelect::new).collect(Collectors.toList());
}