Commit 6781c6d9 authored by 王源's avatar 王源 🎧

Merge branch 'test'

parents a9634e91 02b6e83d
...@@ -47,12 +47,20 @@ interface UserServiceInterface ...@@ -47,12 +47,20 @@ interface UserServiceInterface
/** /**
* 通过部门id列表获取用户数组(包括子部门用户) * 通过部门id列表获取用户数组(包括子部门用户)
* @param array $deptIds * @param array $deptIds 默认去重
* @param array $columns 用户字段,默认['id', 'name'] * @param array $columns 用户字段,默认['id', 'name']
* @return array * @return array
*/ */
public function getListByDeptIds(array $deptIds, $columns = []); 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 * @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