|
@@ -149,7 +149,7 @@ public class IotOperationMeetingServiceImpl implements IotOperationMeetingServic
|
|
|
// 校验当期运营会议是否有重复
|
|
// 校验当期运营会议是否有重复
|
|
|
if (CollUtil.isNotEmpty(meetings)) {
|
|
if (CollUtil.isNotEmpty(meetings)) {
|
|
|
meetings.forEach(mtg -> {
|
|
meetings.forEach(mtg -> {
|
|
|
- if (mtg.getId() != meeting.getId()) {
|
|
|
|
|
|
|
+ if (!mtg.getId().equals(meeting.getId())) {
|
|
|
throw exception(IOT_OPERATION_MEETING_EXISTS);
|
|
throw exception(IOT_OPERATION_MEETING_EXISTS);
|
|
|
}
|
|
}
|
|
|
});
|
|
});
|