|
@@ -2,6 +2,8 @@ package com.qmth.distributed.print.api;
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
+import com.qmth.boot.api.annotation.Aac;
|
|
|
+import com.qmth.boot.api.annotation.BOOL;
|
|
|
import com.qmth.boot.api.constant.ApiConstant;
|
|
|
import com.qmth.distributed.print.business.bean.params.TSchoolPrivilegeParam;
|
|
|
import com.qmth.teachcloud.common.bean.dto.PrivilegeDto;
|
|
@@ -67,6 +69,7 @@ public class MenuCustomController {
|
|
|
sysPrivilegeQueryWrapper.lambda().eq(SysPrivilege::getEnable, true)
|
|
|
.eq(SysPrivilege::getDisplay, true)
|
|
|
.eq(SysPrivilege::getDefaultAuth, false)
|
|
|
+ .ne(SysPrivilege::getType, PrivilegeEnum.URL)
|
|
|
.notIn(SysPrivilege::getUrl, Arrays.asList(SystemConstant.MENU_MANAGE, SystemConstant.CUSTOM_MENU));
|
|
|
List<SysPrivilege> sysPrivilegeList = sysPrivilegeService.list(sysPrivilegeQueryWrapper);
|
|
|
List<PrivilegeDto> privilegeDtoList = null;
|