xuefei
2020-12-10 eeeb7233935ea9b10e99043bdbf740ef86c9bf20
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
package cn.cetc54.platform.core.serviceimpl.mybatis;
 
import cn.cetc54.platform.core.dao.mapper.UserRoleMapper;
import cn.cetc54.platform.core.entity.Role;
import cn.cetc54.platform.core.entity.UserRole;
import cn.cetc54.platform.core.service.mybatis.IUserRoleService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
import java.util.List;
 
/**
 * @author
 */
@Service
public class IUserRoleServiceImpl extends ServiceImpl<UserRoleMapper, UserRole> implements IUserRoleService {
 
    @Autowired
    private UserRoleMapper userRoleMapper;
 
    @Override
    public List<Role> findByUserId(String userId) {
 
        return userRoleMapper.findByUserId(userId);
    }
 
    @Override
    public List<String> findDepIdsByUserId(String userId) {
 
        return userRoleMapper.findDepIdsByUserId(userId);
    }
}