ZhuDongming
2019-11-28 70830c5b2e96cc1c76d4adb88ddced55e7476547
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
package com.moral.mapper;
 
import java.util.List;
 
import org.apache.ibatis.annotations.Param;
 
import com.moral.common.mapper.BaseMapper;
import com.moral.entity.Menu;
 
import tk.mybatis.mapper.entity.Example;
 
 
public interface MenuMapper extends BaseMapper<Menu> {
 
    int countByExample(Example example);
 
    List<Menu> selectWithMenuNameByExample(Example example);
 
    List<Menu> getMenuList(Example example);
 
    List<Menu> getParentMenuList(@Param("menuName") String menuName);
 
    List<Integer> getChannelId();
 
    List<Menu> getMenuListInfo();
 
    List<Integer> getMenuOrdersByRoleId(@Param("roleId") Integer roleId);
 
}