|
|
|
@@ -75,10 +75,10 @@ public class DmReceptionManager extends BaseManagerImpl<DmReceptionQuery, DmRece |
|
|
|
public void addDeceptionVisitorMerge(Long receptionId, Long[][] visitorIds) { |
|
|
|
if (ArrayUtil.isNotEmpty(visitorIds)) { |
|
|
|
List<DmReceptionVisitorMerge> receptionVisitorMerges = new ArrayList<DmReceptionVisitorMerge>(); |
|
|
|
if (visitorIds == null) { |
|
|
|
return; |
|
|
|
} |
|
|
|
for (int p = 1; p < visitorIds.length; p++) { |
|
|
|
if (visitorIds == null) { |
|
|
|
continue; |
|
|
|
} |
|
|
|
int priority = p; |
|
|
|
List<Long> visitorList = new ArrayList<>(Arrays.asList(visitorIds[p])); |
|
|
|
// 1.存储接待模式与访客的关联数据 |
|
|
|
|