/**
|
* 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);
|
|
}
|