自动化立体仓库 - WMS系统
lty
3 天以前 d907a822a940c7ec0fb7de0ca845472bda52229b
src/main/java/com/zy/asrs/controller/ApiLogController.java
@@ -65,17 +65,17 @@
    @ManagerAuth
    public R add(ApiLog apiLog) {
        apiLogService.insert(apiLog);
        return R.ok();
        return R.ok("response.save_success");
    }
   @RequestMapping(value = "/apiLog/update/auth")
   @ManagerAuth
    public R update(ApiLog apiLog){
        if (Cools.isEmpty(apiLog) || null==apiLog.getId()){
            return R.error();
            return R.error("response.param_error");
        }
        apiLogService.updateById(apiLog);
        return R.ok();
        return R.ok("response.update_success");
    }
    @RequestMapping(value = "/apiLog/delete/auth")
@@ -84,7 +84,7 @@
         for (Long id : ids){
            apiLogService.deleteById(id);
        }
        return R.ok();
        return R.ok("response.delete_success");
    }
    @RequestMapping(value = "/apiLog/export/auth")