1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package api.service;
|
| import api.bean.SysUserCompanyEntity;
| import com.baomidou.mybatisplus.extension.service.IService;
|
| import java.util.List;
|
| /**
| * @program: machine-fast
| * @description:
| * @author: YSS
| * @create: 2019-04-18 11:09
| **/
| public interface SysUserCompanyService extends IService<SysUserCompanyEntity> {
|
|
| Long queryCompanyId(Long userId);
|
| List<SysUserCompanyEntity> listByCompanyId(Long userId);
|
|
| }
|
|