6
jinlin
2023-12-03 c8d8a511f45c96ed3a5123a88e48de2ffdbf632a
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
/**
 * Copyright (c) 2018 人人开源 All rights reserved.
 *
 * https://www.renren.io
 *
 * 版权所有,侵权必究!
 */
 
package com.zt.core.sys.service;
 
import com.zt.core.sys.model.SysUser;
 
import java.util.List;
 
/**
 * 系统用户
 *
 * @author hehz
 */
public interface ISysUserService {
 
    SysUser get(Long id);
 
    SysUser getByUsername(String username);
 
    /**
     * 根据部门ID查询
     */
    List<SysUser> getByDeptId(Long deptId);
 
    /**
     * 根据部门ID查询
     */
    List<SysUser> getByDeptIds(List<Long> deptIds);
 
}