You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fu-hsi-service/src/main/java/com/supervision/police/service/SystemMenuService.java

33 lines
823 B
Java

package com.supervision.police.service;
import com.supervision.police.domain.SystemMenu;
import com.baomidou.mybatisplus.extension.service.IService;
import com.supervision.police.dto.MenuDTO;
import java.util.List;
/**
* @author Administrator
* @description system_menu()Service
* @createDate 2024-07-31 11:02:43
*/
public interface SystemMenuService extends IService<SystemMenu> {
10 months ago
List<MenuDTO> treeMenuList();
List<MenuDTO> treeMenuList(List<MenuDTO> menuDTOList);
List<MenuDTO> listMenu();
10 months ago
/**
* id
* @param menuDTOList
* @param selectMenuIdList id
* @return
*/
List<MenuDTO> filterMenuBySelect(List<MenuDTO> menuDTOList, List<String> selectMenuIdList);
}