Newspaper 1 年之前
父节点
当前提交
9826008be5

+ 2 - 2
huimv-receive/src/main/java/com/huimv/receive/service/impl/BaseWashoutPointServiceImpl.java

@@ -117,12 +117,12 @@ public class BaseWashoutPointServiceImpl extends ServiceImpl<BaseWashoutPointMap
         List<DestVo> destVoList = new ArrayList<>();
         for (BaseWashoutPoint baseWashoutPoint : baseWashoutPointList) {
             DestVo destVo = new DestVo();
-            destVo.setId(baseWashoutPoint.getId());
+            destVo.setId(baseWashoutPoint.getLocationId());
             destVo.setLocationName(baseWashoutPoint.getLocationName());
             destVoList.add(destVo);
 
             DestVo destVo2 = new DestVo();
-            destVo2.setId(baseWashoutPoint.getId());
+            destVo2.setId(baseWashoutPoint.getLocationId());
             destVo2.setLocationName(baseWashoutPoint.getTailLocationName());
             destVoList.add(destVo2);
         }