|
@@ -64,7 +64,7 @@ public class GeomInfoService {
|
64
|
64
|
}
|
65
|
65
|
|
66
|
66
|
@Transactional
|
67
|
|
- public void saveLayerByZone(OneZoneGeomInfos infos) {
|
|
67
|
+ public void saveGeom(OneZoneGeomInfos infos) {
|
68
|
68
|
// 保存图层
|
69
|
69
|
if (infos.getModifyLayerList() != null && infos.getModifyLayerList().size() > 0) {
|
70
|
70
|
for (LayerInfo layerInfo : infos.getModifyLayerList()) {
|
|
@@ -76,5 +76,6 @@ public class GeomInfoService {
|
76
|
76
|
// 删除图层
|
77
|
77
|
if (infos.getDeleteLayerList() != null && infos.getDeleteLayerList().size() > 0)
|
78
|
78
|
layerInfoRepository.deleteAllByIdInBatch(infos.getDeleteLayerList());
|
|
79
|
+ saveGeomByZone(infos);
|
79
|
80
|
}
|
80
|
81
|
}
|