From e78c34c94f86f5559c1429f3c8a35a2029e122c6 Mon Sep 17 00:00:00 2001 From: weishengyou <2454197255@qq.com> Date: Wed, 1 Apr 2026 11:25:46 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E4=BF=AE=E5=A4=8D=E5=A4=84=E5=88=86?= =?UTF-8?q?=E6=96=87=E5=8F=B7=E6=8A=A5=E9=94=99=EF=BC=8C=E5=B0=86=E5=A4=84?= =?UTF-8?q?=E5=88=86=E6=96=87=E5=8F=B7=E5=8F=82=E6=95=B0=E7=B1=BB=E5=9E=8B?= =?UTF-8?q?=E4=BB=8ELong=E6=94=B9=E4=B8=BAString=20=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E4=BA=86=E5=A4=84=E5=88=86=E6=96=87=E5=8F=B7=E7=9B=B8=E5=85=B3?= =?UTF-8?q?=E6=96=B9=E6=B3=95=E7=9A=84=E5=8F=82=E6=95=B0=E7=B1=BB=E5=9E=8B?= =?UTF-8?q?=EF=BC=8C=E4=BB=8ELong=E6=94=B9=E4=B8=BAString=EF=BC=8C?= =?UTF-8?q?=E4=BB=A5=E6=94=AF=E6=8C=81=E6=9B=B4=E5=B9=BF=E6=B3=9B=E7=9A=84?= =?UTF-8?q?=E6=96=87=E5=8F=B7=E6=A0=BC=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../controller/routine/RtStuDisciplinaryRelieveController.java | 2 +- .../srs/routine/mapper/RtStuDisciplinaryApplicationMapper.java | 2 +- .../routine/service/IRtStuDisciplinaryApplicationService.java | 2 +- .../service/impl/RtStuDisciplinaryApplicationServiceImpl.java | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/srs-admin/src/main/java/com/srs/web/controller/routine/RtStuDisciplinaryRelieveController.java b/srs-admin/src/main/java/com/srs/web/controller/routine/RtStuDisciplinaryRelieveController.java index 0e1dd32..854b733 100644 --- a/srs-admin/src/main/java/com/srs/web/controller/routine/RtStuDisciplinaryRelieveController.java +++ b/srs-admin/src/main/java/com/srs/web/controller/routine/RtStuDisciplinaryRelieveController.java @@ -211,7 +211,7 @@ public class RtStuDisciplinaryRelieveController extends BaseController { @GetMapping("/getPenaltyNumber/{penaltyNumber}") @ApiOperation("根据处分文号获取处分相关信息") - public AjaxResult getPenaltyNumber(@PathVariable Long penaltyNumber) { + public AjaxResult getPenaltyNumber(@PathVariable String penaltyNumber) { return success(rtStuDisciplinaryApplicationService.getStuDisciplinaryApplicationByPenaltyNumber(penaltyNumber)); } diff --git a/srs-routine/src/main/java/com/srs/routine/mapper/RtStuDisciplinaryApplicationMapper.java b/srs-routine/src/main/java/com/srs/routine/mapper/RtStuDisciplinaryApplicationMapper.java index 7cb3a37..46847eb 100644 --- a/srs-routine/src/main/java/com/srs/routine/mapper/RtStuDisciplinaryApplicationMapper.java +++ b/srs-routine/src/main/java/com/srs/routine/mapper/RtStuDisciplinaryApplicationMapper.java @@ -85,7 +85,7 @@ public interface RtStuDisciplinaryApplicationMapper extends BaseMapper