#
Junjie
2024-07-30 9870b9e10e1d0abcbc91fa2840c9ed6cc2854b68
zy-asrs-wms/src/main/java/com/zy/asrs/wms/system/service/impl/MenuServiceImpl.java
@@ -13,8 +13,8 @@
public class MenuServiceImpl extends ServiceImpl<MenuMapper, Menu> implements MenuService {
    @Override
    public List<Menu> selectByPathName(String pathName, Integer type) {
        return this.baseMapper.selectByPathName('%' + pathName + '%', type);
    public List<Menu> selectByParentId(Long parentId, Integer type, Long hostId) {
        return this.baseMapper.selectByParentId(parentId, type, hostId);
    }
    @Override