|
@@ -92,10 +92,10 @@ public class WebSiteTourismTravelNotesPublishController {
|
|
|
List<TourismTravelNotesContentWriteDto> travelNotesContentWriteList = tourismProjectTravelNotesWriteDto.getTravelNotesContent();
|
|
|
List<TourismTravelNotesContentWrite> tourismTravelNotesContentWriteList = MyModelUtil.copyCollectionTo(travelNotesContentWriteList, TourismTravelNotesContentWrite.class);
|
|
|
for (TourismTravelNotesContentWrite item : tourismTravelNotesContentWriteList) {
|
|
|
- item.setAssociationId(tourismProjectTravelNotesWrite.getId());
|
|
|
+ item.setAssociationId(Long.parseLong(tourismProjectTravelNotesWrite.getId()));
|
|
|
item.setId(null);
|
|
|
}
|
|
|
- tourismTravelNotesContentWriteService.removeByAssociationId(tourismProjectTravelNotesWrite.getId());
|
|
|
+ tourismTravelNotesContentWriteService.removeByAssociationId(Long.parseLong(tourismProjectTravelNotesWrite.getId()));
|
|
|
//查询关联数据的id,根据id进行更新数据表的数据
|
|
|
tourismTravelNotesContentWriteService.saveNewBatch(tourismTravelNotesContentWriteList);
|
|
|
}
|
|
@@ -228,7 +228,7 @@ public class WebSiteTourismTravelNotesPublishController {
|
|
|
List<TourismTravelNotesContentWrite> tourismTravelNotesContentWriteList =
|
|
|
MyModelUtil.copyCollectionTo(tourismProjectTravelNotesWriteDto.getTravelNotesContent(), TourismTravelNotesContentWrite.class);
|
|
|
for (TourismTravelNotesContentWrite item : tourismTravelNotesContentWriteList) {
|
|
|
- item.setAssociationId(tourismProjectTravelNotesWrite.getId());
|
|
|
+ item.setAssociationId(Long.parseLong(tourismProjectTravelNotesWrite.getId()));
|
|
|
item.setId(null);
|
|
|
}
|
|
|
tourismTravelNotesContentWriteService.saveNewBatch(tourismTravelNotesContentWriteList);
|