ZengTao
2024-08-08 918c870a2bc093f22b6e80e7ed447aba0b161f4a
hangzhoumesParent/moduleService/UnLoadGlassModule/src/main/java/com/mes/downglassinfo/service/impl/DownGlassInfoServiceImpl.java
@@ -109,7 +109,7 @@
    }
    @Override
    public Map<String, List<Map<String, Object>>> downGlassPrint(DownGlassInfo downGlassInfo){
    public List<Map<String, List<Map<String, Object>>>> downGlassPrint(DownGlassInfo downGlassInfo){
        QueryWrapper<DownGlassInfo> queryWrapper = Wrappers.query();
        queryWrapper.eq("flow_card_id", "NG24080012A001")
                .eq("layer", 1)
@@ -135,6 +135,7 @@
                }
            }
        }
        List<Map<String, List<Map<String, Object>>>> listMap=new ArrayList<>();
        Map<String, List<Map<String, Object>>> result = new HashMap<>();
        result.put("detail", projectInfo);
        result.put("detailList", flowCardInfo);
@@ -150,7 +151,8 @@
            }
            result.put("processList", processList);
        }
        return result;
        listMap.add(result);
        return listMap;
    }
}