From 3072d212ecea4e7372b95b417d03ecbeb43f11eb Mon Sep 17 00:00:00 2001 From: zelian_wu Date: Thu, 25 Jan 2024 10:31:24 +0800 Subject: [PATCH] =?UTF-8?q?2024/1/19=20=E8=BF=94=E5=B7=A5=E8=BF=94?= =?UTF-8?q?=E4=BF=AE=E8=AE=B0=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/production/controller/DailyPlanController.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/heai/modules/production/controller/DailyPlanController.java b/src/main/java/com/heai/modules/production/controller/DailyPlanController.java index 4e0569f..0d00b6c 100644 --- a/src/main/java/com/heai/modules/production/controller/DailyPlanController.java +++ b/src/main/java/com/heai/modules/production/controller/DailyPlanController.java @@ -995,11 +995,11 @@ public class DailyPlanController { throw new RuntimeException("未接收到参数"); } if (!StringUtils.hasText(reworkRecord.getSeqNo()+"")){ - throw new RuntimeException("为输入派工单号"); + throw new RuntimeException("未输入派工单号"); } List list = reworkRecordService.selectRework(reworkRecord); if (null == list || list.isEmpty()){ - throw new RuntimeException("该派工单为查询到返工返修单"); + throw new RuntimeException("未找到该派工单的返工返修单"); } return R.ok().put("row",list.get(0)); }