Commit f233932c authored by fuyunnan's avatar fuyunnan

Merge branch 'master' into develop

parents d481f1ff c40f2d0d
...@@ -133,4 +133,11 @@ interface ProductServiceInterface ...@@ -133,4 +133,11 @@ interface ProductServiceInterface
*/ */
public function getWithPoint(array $idList, $groupByFlag = false); public function getWithPoint(array $idList, $groupByFlag = false);
/**
* 获取全部申报要素列表
* @param array $columns 默认['*']
* @return array
*/
public function reportPoints(array $columns = ['*']): array;
} }
...@@ -114,4 +114,11 @@ interface UserServiceInterface ...@@ -114,4 +114,11 @@ interface UserServiceInterface
*/ */
public function getDirectLeader($userId); public function getDirectLeader($userId);
/**
* 获取多个用户的直属领导
* @param array $userIds 用户id数组,默认去重
* @return array 直属领导数组,key值为用户id
*/
public function getDirectLeadersByIds($userIds);
} }
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