Browse Source

试题添加返回值

tags/正式3.10.2^0
王宁 1 year ago
parent
commit
d54dccc130
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      sstudy/src/main/resources/mapper/question/QuestionMapper.xml

+ 2
- 2
sstudy/src/main/resources/mapper/question/QuestionMapper.xml View File

236
 
236
 
237
     <!--章节、知识点选题-->
237
     <!--章节、知识点选题-->
238
     <select id="listForSelect" resultType="java.util.Map">
238
     <select id="listForSelect" resultType="java.util.Map">
239
-        select q.questionid,q.score,q.complexity,q.qstem,q.qoption,q.qanswer,q.qanalyze
239
+        select q.questionid,q.score,q.complexity,q.qstem,q.qstemtxt,q.qoption,q.qanswer,q.qanalyze
240
         ,q.qtypeid,q.qtypename,q.count,q.ctype,q.source,q.year,q.region,q.schoolname,
240
         ,q.qtypeid,q.qtypename,q.count,q.ctype,q.source,q.year,q.region,q.schoolname,
241
                q.qlevel,q.hearfile,q.hashear
241
                q.qlevel,q.hearfile,q.hashear
242
         from t_question q
242
         from t_question q
306
     </select>
306
     </select>
307
 
307
 
308
     <select id="listSonQuestionForSelect" resultType="java.util.Map">
308
     <select id="listSonQuestionForSelect" resultType="java.util.Map">
309
-        select q.questionid,q.questionpid,q.score,q.complexity,q.qstem,q.qoption,q.qanswer,q.qanalyze
309
+        select q.questionid,q.questionpid,q.score,q.complexity,q.qstem,q.qstemtxt,q.qoption,q.qanswer,q.qanalyze
310
         ,q.qtypeid,q.qtypename,q.ctype,q.qlevel,q.sorder,q.hashear,q.hearfile
310
         ,q.qtypeid,q.qtypename,q.ctype,q.qlevel,q.sorder,q.hashear,q.hearfile
311
         from t_question q where q.qlevel=3 and q.questionpid in('${questionids}') order by q.sorder
311
         from t_question q where q.qlevel=3 and q.questionpid in('${questionids}') order by q.sorder
312
     </select>
312
     </select>

Loading…
Cancel
Save