Commit 4b3d9180 by yaosai

bugfix-删除导购

parent 1435ca21
...@@ -105,10 +105,6 @@ public class ClerkController extends WebBaseController { ...@@ -105,10 +105,6 @@ public class ClerkController extends WebBaseController {
List<String> staffIds = list.stream().map(s -> s.getStaffId()).collect(Collectors.toList()); List<String> staffIds = list.stream().map(s -> s.getStaffId()).collect(Collectors.toList());
List<StaffDTO> resultlist = staffApiService.listByIds(staffIds); List<StaffDTO> resultlist = staffApiService.listByIds(staffIds);
Map<String, StaffDTO> map = com.gic.commons.util.CollectionUtil.toMap(resultlist, "staffId"); Map<String, StaffDTO> map = com.gic.commons.util.CollectionUtil.toMap(resultlist, "staffId");
int size = 0;
if (resultlist != null) {
size = resultlist.size();
}
List<StaffVO> resultList = new ArrayList<>(); List<StaffVO> resultList = new ArrayList<>();
for (StaffClerkRelationDTO staffClerkRelationDTO : list) { for (StaffClerkRelationDTO staffClerkRelationDTO : list) {
......
...@@ -82,7 +82,7 @@ public class StaffVO implements Serializable{ ...@@ -82,7 +82,7 @@ public class StaffVO implements Serializable{
private Boolean weixinPush; private Boolean weixinPush;
private Integer memberCount; private int memberCount;
private String clerkId; private String clerkId;
/** /**
......
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