Commit da48e0ab by 徐高华

朋友圈

parent 6e4126d7
......@@ -103,6 +103,9 @@ public class QwMomentPlanAttendServiceImpl implements QwMomentPlanAttendService
@Override
public void saveClerk(String wxEnterpriseId , String enterpriseId, Long planId , List<ClerkStaffBO> clerkStaffList , int statusFlag) {
if(CollectionUtils.isEmpty(clerkStaffList)) {
return;
}
List<String> clerkIdList = clerkStaffList.stream().map(o->o.getClerkId()).collect(Collectors.toList());
List<String> existClerkIdList = this.qwMomentPlanAttendMapper.listExistClerkIds(planId,clerkIdList) ;
if(CollectionUtils.isNotEmpty(existClerkIdList)) {
......
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