自动化立体仓库 - WMS系统
#1
lsh
昨天 04d820b5444d73570ce8ea654c4b64bf90a39840
src/main/java/com/zy/asrs/service/impl/MobileServiceImpl.java
@@ -1365,4 +1365,19 @@
        }
        return result;
    }
    @Override
    @Transactional
    public List<Map<String, Object>> boxTypeComb2() {
        EntityWrapper<BasBoxType> wrapper = new EntityWrapper<>();
        List<Map<String, Object>> result = new ArrayList<>();
        List<BasBoxType> basBoxTypes = basBoxTypeService.selectList(wrapper.orderBy("id",true));
        for (BasBoxType basBoxType : basBoxTypes){
            Map<String, Object> map = new HashMap<>();
            map.put("boxType", basBoxType.getBoxType());
            map.put("boxSpecs", basBoxType.getBoxSpecs());
            result.add(map);
        }
        return result;
    }
}