From 5fc609145a7072fb8c7bce501ece0daca0d46467 Mon Sep 17 00:00:00 2001
From: “djh” <“3298565835@qq.com”>
Date: 星期四, 24 十月 2024 17:03:28 +0800
Subject: [PATCH] 新增限制推送数据量

---
 exam-system/src/main/resources/mapper/institutionaccess/ThCertMapper.xml |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/exam-system/src/main/resources/mapper/institutionaccess/ThCertMapper.xml b/exam-system/src/main/resources/mapper/institutionaccess/ThCertMapper.xml
index 23e8467..6763a25 100644
--- a/exam-system/src/main/resources/mapper/institutionaccess/ThCertMapper.xml
+++ b/exam-system/src/main/resources/mapper/institutionaccess/ThCertMapper.xml
@@ -12,10 +12,10 @@
                  and a.institution_name =#{institutionName}
             </if>
             <if test="startTime!=null and startTime!=''">
-                and a.cert_ime &gt;= #{startTime}
+                and a.cert_time &gt;= #{startTime}
             </if>
             <if test="endTime!=null and endTime!=''">
-                and a.cert_ime &lt;= #{endTime}
+                and a.cert_time &lt;= #{endTime}
             </if>
             <if test="trainOrgName!=null and trainOrgName!=''">
                 and a.train_org_name =#{trainOrgName}

--
Gitblit v1.9.2