|
|
|
@ -785,8 +785,8 @@ public class ImsDutyMainServiceImpl extends BaseServiceImpl<ImsDutyMainMapper, I
|
|
|
|
|
last(" limit 1"); |
|
|
|
|
}}); |
|
|
|
|
//如果person的表中有班组名称,则直接取
|
|
|
|
|
if (ObjectUtil.isNotEmpty(imsDutyMainPersonEntity) && imsDutyMainPersonEntity.getDutyGroupName() != null) { |
|
|
|
|
s.setName(imsDutyMainPersonEntity.getDutyGroupName()); |
|
|
|
|
if (ObjectUtil.isNotEmpty(imsDutyMainPersonEntity) &&StringUtil.isNotBlank(imsDutyMainPersonEntity.getDutyGroupName())) { |
|
|
|
|
s.setName(s.getName()+imsDutyMainPersonEntity.getDutyGroupName()); |
|
|
|
|
} else { |
|
|
|
|
//否则,拼接对应人员
|
|
|
|
|
String[] split = s.getDutyPersonIds().split("\\^"); |
|
|
|
|