From 5eb29a5eab52a99c22e8fee4c4df34ddb55b044c Mon Sep 17 00:00:00 2001 From: kongzy <kongzy> Date: 星期三, 16 十月 2024 13:57:01 +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 >= #{startTime} + and a.cert_time >= #{startTime} </if> <if test="endTime!=null and endTime!=''"> - and a.cert_ime <= #{endTime} + and a.cert_time <= #{endTime} </if> <if test="trainOrgName!=null and trainOrgName!=''"> and a.train_org_name =#{trainOrgName} -- Gitblit v1.9.2