自动化立体仓库 - WMS系统
pang.jiabao
2024-04-18 cddfcdf68ff7fff6b1be82bc5edf822458de6749
src/main/java/com/zy/asrs/controller/OpenController.java
@@ -170,24 +170,4 @@
        System.out.println(JSON.toJSONString(param1));
    }
    //平库pda上架
    @RequestMapping("/manDetl/in")
    public R manDetlAdd(@RequestBody JSONObject json){
        if (json == null){
            return R.error("传入数据为空");
        }
        return openService.manDetlIn(json);
    }
    //平库pda下架
    @RequestMapping("/manDetl/out")
    public R manDetlDelete(@RequestBody JSONObject json){
        if (json == null){
            return R.error("传入数据为空");
        }
        return openService.manDetlOut(json);
    }
}