自动化立体仓库 - WMS系统
1
ZY
2025-03-29 c65db22f67af8018ae7105ea00d8743e42835e13
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));