自动化立体仓库 - WMS系统
野心家
2023-06-30 3a41e569efa225c4285d2b2b0e0b7035a6324d9e
src/main/java/com/zy/asrs/controller/OpenController.java
@@ -172,24 +172,4 @@
        System.out.println(JSON.toJSONString(param1));
    }
    @RequestMapping("/manDetl/in")
    public R manDetlAdd(@RequestBody JSONObject json){
        if (json == null){
            return R.error("传入数据为空");
        }
        return openService.manDetlIn(json);
    }
    @RequestMapping("/manDetl/out")
    public R manDetlDelete(@RequestBody JSONObject json){
        if (json == null){
            return R.error("传入数据为空");
        }
        return openService.manDetlOut(json);
    }
}