|
|
@ -1765,13 +1765,17 @@ public class ImsDutyMainServiceImpl extends BaseServiceImpl<ImsDutyMainMapper, I |
|
|
|
eq(ImsDutyMainPersonEntity::getDutyMainId, s.getId()); |
|
|
|
eq(ImsDutyMainPersonEntity::getDutyMainId, s.getId()); |
|
|
|
last("limit 1"); |
|
|
|
last("limit 1"); |
|
|
|
}}); |
|
|
|
}}); |
|
|
|
|
|
|
|
if(ObjectUtil.isNotEmpty(imsDutyMainPersonEntity.getDutyChargePerson())){ |
|
|
|
s.setManagerId(imsDutyMainPersonEntity.getDutyChargePerson().toString()); |
|
|
|
s.setManagerId(imsDutyMainPersonEntity.getDutyChargePerson().toString()); |
|
|
|
|
|
|
|
} |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
ImsDutyGroupEntity imsDutyGroupEntity = dutyGroupMapper.selectById(s.getDutyGroupId()); |
|
|
|
ImsDutyGroupEntity imsDutyGroupEntity = dutyGroupMapper.selectById(s.getDutyGroupId()); |
|
|
|
s.setGroupName(imsDutyGroupEntity.getGroupName()); |
|
|
|
s.setGroupName(imsDutyGroupEntity.getGroupName()); |
|
|
|
s.setDutyGroupId(imsDutyGroupEntity.getId()); |
|
|
|
s.setDutyGroupId(imsDutyGroupEntity.getId()); |
|
|
|
|
|
|
|
if(ObjectUtil.isNotEmpty(imsDutyGroupEntity.getManagerId())){ |
|
|
|
s.setManagerId(imsDutyGroupEntity.getManagerId().toString()); |
|
|
|
s.setManagerId(imsDutyGroupEntity.getManagerId().toString()); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
return s; |
|
|
|
return s; |
|
|
|
}).collect(Collectors.toList()); |
|
|
|
}).collect(Collectors.toList()); |
|
|
|
return dutyMainInfoVos; |
|
|
|
return dutyMainInfoVos; |
|
|
|