#
luxiaotao1123
2024-03-21 6ec7b33492417900ead18175f187381dedc9bc0e
zy-asrs-wcs/src/main/java/com/zy/asrs/wcs/core/map/service/MapService.java
@@ -26,13 +26,13 @@
    @Autowired
    private DictService dictService;
    public MapDataParam getMapData(MapQueryParam param, Long userId) {
    public String getMapData(MapQueryParam param, Long userId) {
        String mapKey = getMapKey(param.getFloor());
        Dict dict = dictService.getOne(new LambdaQueryWrapper<Dict>().eq(Dict::getFlag, mapKey));
        if (Cools.isEmpty(dict)) {
            return null;
        } else {
            return JSON.parseObject(dict.getValue(), MapDataParam.class) ;
            return dict.getValue();
        }
    }