|
@@ -77,8 +77,8 @@
|
|
|
from sys_menu m
|
|
|
left join sys_tenant_menu tm on tm.menu_id = m.menu_id
|
|
|
where tm.tenant_id = #{tenantId}
|
|
|
- and m.menu_name not in ('数据引擎','流程引擎','表单引擎')
|
|
|
- and parent_id not in (select menu_id from sys_menu where menu_name in ('数据引擎','流程引擎','表单引擎'))
|
|
|
+ and m.menu_name not in ('数据引擎','流程引擎','表单引擎','移动端引擎')
|
|
|
+ and parent_id not in (select menu_id from sys_menu where menu_name in ('数据引擎','流程引擎','表单引擎','移动端引擎'))
|
|
|
<if test="menu.menuName != null and menu.menuName != ''">
|
|
|
AND m.menu_name like concat('%', #{menu.menuName}, '%')
|
|
|
</if>
|
|
@@ -100,8 +100,8 @@
|
|
|
from sys_tenant_menu tm
|
|
|
left join sys_menu m on tm.menu_id = m.menu_id
|
|
|
where m.menu_type in ('M', 'C') and m.status = 0 and tm.tenant_id = #{tenantId}
|
|
|
- and m.menu_name not in ('数据引擎','流程引擎','表单引擎')
|
|
|
- and parent_id not in (select menu_id from sys_menu where menu_name in ('数据引擎','流程引擎','表单引擎'))
|
|
|
+ and m.menu_name not in ('数据引擎','流程引擎','表单引擎','移动端引擎')
|
|
|
+ and parent_id not in (select menu_id from sys_menu where menu_name in ('数据引擎','流程引擎','表单引擎','移动端引擎'))
|
|
|
order by m.parent_id, m.order_num
|
|
|
</select>
|
|
|
|