|
@@ -4,6 +4,8 @@ import java.util.ArrayList;
|
|
|
import java.util.Iterator;
|
|
|
import java.util.List;
|
|
|
import java.util.stream.Collectors;
|
|
|
+
|
|
|
+import com.alibaba.fastjson.JSONObject;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
import com.ruixuan.common.annotation.DataScope;
|
|
@@ -294,6 +296,11 @@ public class SysDeptServiceImpl implements ISysDeptService
|
|
|
return deptMapper.deleteDeptById(deptId);
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public List<JSONObject> getUserListByDeptId(Long deptId) {
|
|
|
+ return deptMapper.getUserListByDeptId(deptId);
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 递归列表
|
|
|
*/
|