1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
| package com.dg.core.service;
|
| import com.dg.core.db.gen.entity.MenuEntity;
|
| import java.util.List;
|
| public interface IMenuService
| {
| /**
| * 获取菜单列表
| * @return
| */
| public List<MenuEntity> selectConfigList();
|
|
| /**
| * 添加新菜单
| * @return
| */
| public int insertConfig(MenuEntity entity);
|
| /**
| * 更新菜单
| * @param entity
| * @return
| */
| public int updateConfig(MenuEntity entity);
|
| /**
| * 删除菜单
| * @param Id
| * @return
| */
| public int deleteConfigById(Long Id);
|
|
| /**
| * 统计数量
| * @return
| */
| public int countNum();
| }
|
|