From 33a072160eda4fa7cb22d330c2bfa9048ad6c0e9 Mon Sep 17 00:00:00 2001
From: Administrator <admin>
Date: Thu, 22 Jul 2021 14:11:50 +0800
Subject: [PATCH] 派遣记录接口修改

---
 src/main/java/org/springblade/modules/exam/mapper/ExamScoreMapper.xml |   14 +++++++++-----
 1 files changed, 9 insertions(+), 5 deletions(-)

diff --git a/src/main/java/org/springblade/modules/exam/mapper/ExamScoreMapper.xml b/src/main/java/org/springblade/modules/exam/mapper/ExamScoreMapper.xml
index 3f8e6f5..dce17ed 100644
--- a/src/main/java/org/springblade/modules/exam/mapper/ExamScoreMapper.xml
+++ b/src/main/java/org/springblade/modules/exam/mapper/ExamScoreMapper.xml
@@ -5,7 +5,9 @@
     <!--考试成绩分页信息-->
     <select id="selectExamScorePage" resultType="org.springblade.modules.exam.vo.ExamScoreVO">
         SELECT
-            *
+         id,candidate_no candidateNo,theory_grade theoryGrade,isnull(learn_grade,-1) learnGrade,all_grade,
+         exam_name examName,security_name securityName,exam_type examType,company,exam_time examTime,
+         all_score allScore,exam_end_time examEndTime,qualified
         FROM
             exam_score
         WHERE
@@ -19,15 +21,17 @@
         <if test="examScore.securityName!=null and  examScore.securityName!=''">
             and security_name like concat('%', #{examScore.securityName},'%')
         </if>
-        <if test="examScore.examType!=null">
-            and exam_type = #{examScore.examType}
-        </if>
+<!--        <if test="examScore.examType!=null">-->
+<!--            and exam_type = #{examScore.examType}-->
+<!--        </if>-->
     </select>
 
     <!--考试成绩详情信息-->
     <select id="selectExamScoreInfo" resultType="org.springblade.modules.exam.vo.ExamScoreVO">
         SELECT
-            *
+            id,candidate_no candidateNo,theory_grade theoryGrade,isnull(learn_grade,-1) learnGrade,all_grade,
+            exam_name examName,security_name securityName,exam_type examType,company,exam_time examTime,
+            all_score allScore,exam_end_time examEndTime,qualified
         FROM
             exam_score
         WHERE

--
Gitblit v1.9.3