|
@@ -1,5 +1,6 @@
|
|
|
package com.hys.app.service.system.impl;
|
|
|
|
|
|
+import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper;
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
@@ -286,4 +287,9 @@ public class MenuManagerImpl implements MenuManager {
|
|
|
wrapper.eq("delete_flag", 0).eq("identifier", identifier);
|
|
|
return menuMapper.selectOne(wrapper);
|
|
|
}
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public List<Menu> getPdaMenu() {
|
|
|
+ return menuMapper.selectList(new LambdaQueryWrapper<Menu>().last("where parent_id in (SELECT id FROM `es_menu` where title = 'pda')"));
|
|
|
+ }
|
|
|
}
|