From ed277ece348dae9bc6e36c0fc9f69ae8a3825912 Mon Sep 17 00:00:00 2001 From: lige <bestlige@outlook.com> Date: 星期四, 18 四月 2024 17:57:55 +0800 Subject: [PATCH] 填鸭表单 --- ltkj-admin/src/main/java/com/ltkj/web/controller/system/TjSurveyQuestionController.java | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ltkj-admin/src/main/java/com/ltkj/web/controller/system/TjSurveyQuestionController.java b/ltkj-admin/src/main/java/com/ltkj/web/controller/system/TjSurveyQuestionController.java index 8dc16bf..1d0bdf5 100644 --- a/ltkj-admin/src/main/java/com/ltkj/web/controller/system/TjSurveyQuestionController.java +++ b/ltkj-admin/src/main/java/com/ltkj/web/controller/system/TjSurveyQuestionController.java @@ -62,7 +62,7 @@ */ //@PreAuthorize("@ss.hasPermi('hosp:question:query')") @GetMapping(value = "/{qid}") - public AjaxResult getInfo(@PathVariable("qid") Long qid) { + public AjaxResult getInfo(@PathVariable("qid") String qid) { return success(tjSurveyQuestionService.selectTjSurveyQuestionByQid(qid)); } @@ -92,7 +92,7 @@ //@PreAuthorize("@ss.hasPermi('hosp:question:remove')") @Log(title = "闂嵎闂", businessType = BusinessType.DELETE) @DeleteMapping("/{qids}") - public AjaxResult remove(@PathVariable Long[] qids) { + public AjaxResult remove(@PathVariable String[] qids) { return toAjax(tjSurveyQuestionService.deleteTjSurveyQuestionByQids(qids)); } } -- Gitblit v1.8.0