Commit 22164f6f by qwmqiuwenmin

fix

parent b5fd5a48
...@@ -1235,7 +1235,7 @@ public class StaffApiServiceImpl implements StaffApiService { ...@@ -1235,7 +1235,7 @@ public class StaffApiServiceImpl implements StaffApiService {
return Collections.EMPTY_LIST; return Collections.EMPTY_LIST;
} }
List<TabHaobanStaffDepartmentRelated> list = staffDepartmentRelatedService.listByDepartmentId(department.getDepartmentId()); List<TabHaobanStaffDepartmentRelated> list = staffDepartmentRelatedService.listByDepartmentId(department.getDepartmentId());
List<String> userIdList = list.stream().filter(s->s.getClerkCode()!=null).map(s->s.getWxUserId()).collect(Collectors.toList()); List<String> userIdList = list.stream().filter(s->StringUtils.isNotBlank(s.getClerkCode())).map(s->s.getWxUserId()).collect(Collectors.toList());
return userIdList; return userIdList;
} }
......
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