1.
luofl
2025-02-23 38116e1a779763482b7c0a5657cfa6cb939f72fb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.panzhihua.sangeshenbian.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.panzhihua.sangeshenbian.model.SystemMenu;
 
import java.util.List;
 
/**
 * @author zhibing.pu
 * @Date 2025/2/23 1:03
 */
public interface ISystemMenuService extends IService<SystemMenu> {
    
    /**
     * 获取获取系统菜单列表
     * @return
     */
    List<SystemMenu> getSystemMenuList();
}