Commit 7198546e authored by fuyunnan's avatar fuyunnan

Merge branch 'master' into dev

parents 0992b5b9 6d111ae6
......@@ -47,12 +47,20 @@ interface UserServiceInterface
/**
* 通过部门id列表获取用户数组(包括子部门用户)
* @param array $deptIds
* @param array $deptIds 默认去重
* @param array $columns 用户字段,默认['id', 'name']
* @return array
*/
public function getListByDeptIds(array $deptIds, $columns = []);
/**
* 通过团队id数组获取用户数组(包括子团队用户)
* @param array $teamIds 默认去重
* @param array $columns 用户字段,默认['id', 'name']
* @return array
*/
public function getListByTeamIds(array $teamIds, $columns = []);
/**
* 判断是否是超级管理员
* @param int $userId
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment