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-system/src/main/java/com/gkhy/exam/system/service/impl/InconsistentServiceImpl.java |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/multi-system/src/main/java/com/gkhy/exam/system/service/impl/InconsistentServiceImpl.java b/multi-system/src/main/java/com/gkhy/exam/system/service/impl/InconsistentServiceImpl.java
index 83116ce..2d1fbbe 100644
--- a/multi-system/src/main/java/com/gkhy/exam/system/service/impl/InconsistentServiceImpl.java
+++ b/multi-system/src/main/java/com/gkhy/exam/system/service/impl/InconsistentServiceImpl.java
@@ -28,9 +28,9 @@
     @Autowired
     private InconsistentMapper inconsistentMapper;
     @Override
-    public CommonPage selectInconsistentList(Integer companyId) {
+    public CommonPage selectInconsistentList(Integer companyId,String year) {
         PageUtils.startPage();
-        List<Inconsistent> inconsistents = inconsistentMapper.selectInconsistentList(companyId);
+        List<Inconsistent> inconsistents = inconsistentMapper.selectInconsistentList(companyId,year);
         return CommonPage.restPage(inconsistents);
     }
 

--
Gitblit v1.9.2