From ddb9b1a011b26fec839618fe908dd7d1bacf4a9b Mon Sep 17 00:00:00 2001
From: Administrator <admin>
Date: Fri, 22 Oct 2021 20:02:36 +0800
Subject: [PATCH] 1.保安单位树接口修改 2.现场保安员,单位检查字段修改,接口修改 3.缴费记录接口修改 4.出资人,管理人员字段调整,接口修改,导出新增示例 5.考试中题目返回去除答案
---
src/main/java/org/springblade/modules/exam/mapper/ExamSubjectChoicesMapper.xml | 14 ++------------
1 files changed, 2 insertions(+), 12 deletions(-)
diff --git a/src/main/java/org/springblade/modules/exam/mapper/ExamSubjectChoicesMapper.xml b/src/main/java/org/springblade/modules/exam/mapper/ExamSubjectChoicesMapper.xml
index d2842fe..b126c16 100644
--- a/src/main/java/org/springblade/modules/exam/mapper/ExamSubjectChoicesMapper.xml
+++ b/src/main/java/org/springblade/modules/exam/mapper/ExamSubjectChoicesMapper.xml
@@ -46,17 +46,7 @@
<id property="subjectName" column="subject_name"/>
<id property="choicesType" column="choices_type"/>
<id property="score" column="score"/>
- <id property="analysis" column="analysis"/>
- <id property="answer" column="answer"/>
<id property="level" column="level"/>
- <id property="creator" column="creator"/>
- <id property="createDate" column="create_date"/>
- <id property="modifier" column="modifier"/>
- <id property="modifyDate" column="modify_date"/>
- <id property="delFlag" column="del_flag"/>
- <id property="applicationCode" column="application_code"/>
- <id property="tenantCode" column="tenant_code"/>
- <id property="tktype" column="tktype"/>
<result column="id" property="id"/>
<collection property="examSubjectOptions" javaType="java.util.List" ofType="org.springblade.modules.exam.entity.ExamSubjectOption" autoMapping="true">
<id property="id" column="eso_id"/>
@@ -64,10 +54,10 @@
</resultMap>
- <!--选择题详情信息-->
+ <!--题目详情信息-->
<select id="selectExamSubjectChoicesInfo" resultMap="ExamSubjectChoicesInfoMap">
SELECT
- esc.*,
+ esc.id,esc.category_id,esc.subject_name,esc.choices_type,esc.score,esc.level,
eso.id eso_id,eso.subject_choices_id,eso.option_name,eso.option_content,eso.creator,
eso.create_date,eso.modifier,eso.modify_date,eso.del_flag,eso.application_code,eso.tenant_code
FROM
--
Gitblit v1.9.3