|
@@ -24,7 +24,6 @@ import org.springframework.validation.annotation.Validated;
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
|
|
|
-import javax.validation.constraints.NotNull;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
import java.util.List;
|
|
|
|
|
|
@@ -84,6 +83,7 @@ public class SysMenuServiceImpl extends ServiceImpl<SysMenuMapper, SysMenu> impl
|
|
.setId(sysId)
|
|
.setId(sysId)
|
|
.setCode(sysSystem.getCode())
|
|
.setCode(sysSystem.getCode())
|
|
.setName(sysSystem.getName())
|
|
.setName(sysSystem.getName())
|
|
|
|
+ .setIcon(sysSystem.getIcon())
|
|
.setMenu(list);
|
|
.setMenu(list);
|
|
menuVos.add(menuVo);
|
|
menuVos.add(menuVo);
|
|
}
|
|
}
|