From 433609b785d7ccecfc18206d7e258a768a908d7e Mon Sep 17 00:00:00 2001 From: zhangc <zc@123> Date: 星期四, 09 一月 2025 16:03:35 +0800 Subject: [PATCH] 空校验;提高代码的健壮性 --- src/main/java/com/zy/asrs/controller/WrkDetlLogController.java | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/zy/asrs/controller/WrkDetlLogController.java b/src/main/java/com/zy/asrs/controller/WrkDetlLogController.java index 517e54d..77a144b 100644 --- a/src/main/java/com/zy/asrs/controller/WrkDetlLogController.java +++ b/src/main/java/com/zy/asrs/controller/WrkDetlLogController.java @@ -93,7 +93,7 @@ @ManagerAuth public R update(WrkDetlLog wrkDetlLog){ if (Cools.isEmpty(wrkDetlLog) || null==wrkDetlLog.getWrkNo()){ - return R.error(); + return R.error("鍙傛暟缂哄け"); } wrkDetlLogService.updateById(wrkDetlLog); return R.ok(); @@ -104,7 +104,7 @@ public R delete(@RequestParam String param){ List<WrkDetlLog> list = JSONArray.parseArray(param, WrkDetlLog.class); if (Cools.isEmpty(list)){ - return R.error(); + return R.error("鍙傛暟缂哄け"); } for (WrkDetlLog entity : list){ wrkDetlLogService.delete(new EntityWrapper<>(entity)); -- Gitblit v1.9.1