ruoyi-common/src/main/java/com/ruoyi/common/core/domain/TreeSelectWell.java
@@ -43,18 +43,12 @@ } public TreeSelectWell(SysDept dept) public TreeSelectWell(TreeDeptWell dept) { this.id = dept.getDeptId(); this.label = dept.getDeptName(); this.well = dept.getWell(); this.children = dept.getChildren().stream().map(TreeSelectWell::new).collect(Collectors.toList()); } public TreeSelectWell(SysMenu menu) { this.id = menu.getMenuId(); this.label = menu.getMenuName(); this.children = menu.getChildren().stream().map(TreeSelectWell::new).collect(Collectors.toList()); } public Long getId()