From 2d9bf42ce507096c3b73a782da3ad16f29d2ccdc Mon Sep 17 00:00:00 2001
From: “djh” <“3298565835@qq.com”>
Date: Thu, 07 May 2026 15:25:16 +0800
Subject: [PATCH] 新增年份查询
---
multi-admin/src/main/java/com/gkhy/exam/admin/controller/web/MeetingsController.java | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/multi-admin/src/main/java/com/gkhy/exam/admin/controller/web/MeetingsController.java b/multi-admin/src/main/java/com/gkhy/exam/admin/controller/web/MeetingsController.java
index 448a26a..a80ad6b 100644
--- a/multi-admin/src/main/java/com/gkhy/exam/admin/controller/web/MeetingsController.java
+++ b/multi-admin/src/main/java/com/gkhy/exam/admin/controller/web/MeetingsController.java
@@ -3,7 +3,6 @@
import com.gkhy.exam.common.annotation.RepeatSubmit;
import com.gkhy.exam.common.api.CommonResult;
-import com.gkhy.exam.system.domain.Inconsistent;
import com.gkhy.exam.system.domain.Meetings;
import com.gkhy.exam.system.service.MeetingsService;
import io.swagger.annotations.Api;
@@ -35,10 +34,11 @@
@ApiImplicitParam(paramType = "query", name = "pageNum", dataType = "int", required = false, value = "当前页,默认1"),
@ApiImplicitParam(paramType = "query", name = "pageSize", dataType = "int", required = false, value = "每页数目,默认10"),
@ApiImplicitParam(paramType = "query", name = "companyId", dataType = "int", required = false, value = "公司id"),
+ @ApiImplicitParam(paramType = "query", name = "year", dataType = "String", required = false, value = "年份"),
})
@GetMapping("/selectMeetingsList")
- public CommonResult selectMeetingsList(Integer companyId){
- return CommonResult.success(meetingsService.selectMeetingsList(companyId));
+ public CommonResult selectMeetingsList(Integer companyId,String year){
+ return CommonResult.success(meetingsService.selectMeetingsList(companyId,year));
}
@RepeatSubmit
@ApiOperation(value = "新增会议管理")
--
Gitblit v1.9.2