From e3a2245265516fef78b4737d6fffc939e7c5e0af Mon Sep 17 00:00:00 2001 From: huliguo <2023611923@qq.com> Date: 星期四, 03 七月 2025 17:56:07 +0800 Subject: [PATCH] bug修改 --- pt-admin/src/main/java/com/ruoyi/web/controller/errand/CourierController.java | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pt-admin/src/main/java/com/ruoyi/web/controller/errand/CourierController.java b/pt-admin/src/main/java/com/ruoyi/web/controller/errand/CourierController.java index 96336de..8006e60 100644 --- a/pt-admin/src/main/java/com/ruoyi/web/controller/errand/CourierController.java +++ b/pt-admin/src/main/java/com/ruoyi/web/controller/errand/CourierController.java @@ -82,7 +82,7 @@ } /** - * 加载未绑定小区的跑腿员 权限设置 + * 加载未绑定小区的跑腿员 */ @GetMapping("/getAllCourierList") @PreAuthorize("@ss.hasPermi('system:appuser:list')") @@ -92,7 +92,7 @@ } /** - * 跑腿员管理列表 权限设置 + * 跑腿员管理列表 */ @PostMapping("/list") @PreAuthorize("@ss.hasPermi('system:courier:list')") @@ -101,7 +101,7 @@ return R.ok(courierService.getCourierPageList(courierPageListDTO)); } /** - * 查看详情 权限设置 + * 查看详情 */ @GetMapping("/detail") @PreAuthorize("@ss.hasPermi('system:courier:list')") @@ -110,7 +110,7 @@ return R.ok(courierService.detail(id)); } /** - * 添加 权限设置 + * 添加 */ @PostMapping("/add") @PreAuthorize("@ss.hasPermi('system:courier:list')") @@ -120,7 +120,7 @@ return R.ok(); } /** - * 编辑 权限设置 + * 编辑 */ @PutMapping("/edit") @PreAuthorize("@ss.hasPermi('system:courier:list')") @@ -131,7 +131,7 @@ } /** - * 删除 权限设置 + * 删除 */ @DeleteMapping("/delete") @PreAuthorize("@ss.hasPermi('system:courier:list')") @@ -141,7 +141,7 @@ return R.ok(); } /** - * 复职/离职 权限设置 + * 复职/离职 */ @PutMapping("/froze") @PreAuthorize("@ss.hasPermi('system:courier:list')") -- Gitblit v1.7.1