自动化立体仓库 - WMS系统
lty
19 小时以前 daac5618fc2322620a82d25603c5b4d15465c5ef
src/main/java/com/zy/asrs/controller/OrderDetlController.java
@@ -58,6 +58,14 @@
        return R.ok(orderDetlService.getPakoutPage(toPage(curr, limit, param, OrderDetl.class)));
    }
    @RequestMapping(value = "/orderDetl/pakout/inspectionList/auth")
    @ManagerAuth
    public R getPakoutInspectionPage(@RequestParam(defaultValue = "1")Integer curr,
                        @RequestParam(defaultValue = "10")Integer limit,
                        @RequestParam Map<String, Object> param){
        return R.ok(orderDetlService.getPakoutInspectionPage(toPage(curr, limit, param, OrderDetl.class)));
    }
    private <T> void convert(Map<String, Object> map, EntityWrapper<T> wrapper){
        for (Map.Entry<String, Object> entry : map.entrySet()){
            String val = String.valueOf(entry.getValue());