自动化立体仓库 - WMS系统
zhangc
2025-02-13 b25fc15afed603c0c874e77d37bf93f08d5398c9
src/main/java/com/zy/asrs/controller/AgvWrkDetlLogController.java
@@ -95,7 +95,7 @@
   @ManagerAuth
    public R update(AgvWrkDetlLog wrkDetlLog){
        if (Cools.isEmpty(wrkDetlLog) || null==wrkDetlLog.getWrkNo()){
            return R.error();
            return R.error("参数缺失");
        }
        wrkDetlLogService.updateById(wrkDetlLog);
        return R.ok();
@@ -106,7 +106,7 @@
    public R delete(@RequestParam String param){
        List<AgvWrkDetlLog> list = JSONArray.parseArray(param, AgvWrkDetlLog.class);
        if (Cools.isEmpty(list)){
            return R.error();
            return R.error("参数缺失");
        }
        for (AgvWrkDetlLog entity : list){
            wrkDetlLogService.delete(new EntityWrapper<>(entity));