1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package org.dromara.system.mapper;
|
| import org.dromara.common.mybatis.core.mapper.BaseMapperPlus;
| import org.dromara.system.domain.SysPost;
| import org.dromara.system.domain.vo.SysPostVo;
|
| import java.util.List;
|
| /**
| * 岗位信息 数据层
| *
| * @author Lion Li
| */
| public interface SysPostMapper extends BaseMapperPlus<SysPost, SysPostVo> {
|
| /**
| * 查询用户所属岗位组
| *
| * @param userId 用户ID
| * @return 结果
| */
| List<SysPostVo> selectPostsByUserId(Long userId);
|
| }
|
|