Commit c96176e0 authored by 吴卿华's avatar 吴卿华

手机端题目增加多选功能 手机端题目增加题库功能

parent 86c4568f
package com.zehong.web.controller.contractTrain; package com.zehong.web.controller.contractTrain;
import java.util.List; import java.util.List;
import com.zehong.system.domain.vo.BatchTopicVo;
import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.GetMapping;
...@@ -79,6 +81,16 @@ public class TContractorTrainCourseTopicController extends BaseController ...@@ -79,6 +81,16 @@ public class TContractorTrainCourseTopicController extends BaseController
return toAjax(tContractorTrainCourseTopicService.insertTContractorTrainCourseTopic(tContractorTrainCourseTopic)); return toAjax(tContractorTrainCourseTopicService.insertTContractorTrainCourseTopic(tContractorTrainCourseTopic));
} }
/**
* 题库批量导入试题
* @param batchTopicVo 试题实体
* @return AjaxResult
*/
@PostMapping("/bachAddTopic")
public AjaxResult bachAddTopic(@RequestBody BatchTopicVo batchTopicVo){
return toAjax(tContractorTrainCourseTopicService.bachAddTopic(batchTopicVo));
}
/** /**
* 修改承包商及访客培训题库 * 修改承包商及访客培训题库
*/ */
......
...@@ -4,6 +4,7 @@ import java.util.Date; ...@@ -4,6 +4,7 @@ import java.util.Date;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import com.alibaba.fastjson.JSON;
import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiOperation;
import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
...@@ -81,6 +82,10 @@ public class TContractorTrainResultController extends BaseController ...@@ -81,6 +82,10 @@ public class TContractorTrainResultController extends BaseController
@GetMapping("/examination") @GetMapping("/examination")
public AjaxResult examination( TContractorTrainResult tContractorTrainResult){ public AjaxResult examination( TContractorTrainResult tContractorTrainResult){
String n="["+tContractorTrainResult.getAnswers()+']';
//字符串转换成二维数组
Integer[][] integers = JSON.parseObject(n, Integer[][].class);
tContractorTrainResult.setIntegers(integers);
//结束时间 //结束时间
tContractorTrainResult.setTestEndTime(new Date()); tContractorTrainResult.setTestEndTime(new Date());
Map<String, Object> examination = tContractorTrainResultService.examination(tContractorTrainResult); Map<String, Object> examination = tContractorTrainResultService.examination(tContractorTrainResult);
......
...@@ -41,7 +41,6 @@ public class TTrainCourseBankController extends BaseController ...@@ -41,7 +41,6 @@ public class TTrainCourseBankController extends BaseController
public TableDataInfo list(TTrainCourseBank tTrainCourseBank) public TableDataInfo list(TTrainCourseBank tTrainCourseBank)
{ {
startPage(); startPage();
System.out.println(tTrainCourseBank);
List<TTrainCourseBank> list = tTrainCourseBankService.selectTTrainCourseBankList(tTrainCourseBank); List<TTrainCourseBank> list = tTrainCourseBankService.selectTTrainCourseBankList(tTrainCourseBank);
return getDataTable(list); return getDataTable(list);
} }
......
...@@ -50,6 +50,43 @@ public class TContractorTrainCourse extends BaseEntity ...@@ -50,6 +50,43 @@ public class TContractorTrainCourse extends BaseEntity
@Excel(name = "是否删除(0正常,1删除)") @Excel(name = "是否删除(0正常,1删除)")
private String isDel; private String isDel;
/** 多选题分数*/
private Integer multipleChoiceScore;
/**单选题分数*/
private Integer singleChoiceScore;
/**判断题分数*/
private Integer judgmentScore;
public static long getSerialVersionUID() {
return serialVersionUID;
}
public Integer getMultipleChoiceScore() {
return multipleChoiceScore;
}
public void setMultipleChoiceScore(Integer multipleChoiceScore) {
this.multipleChoiceScore = multipleChoiceScore;
}
public Integer getSingleChoiceScore() {
return singleChoiceScore;
}
public void setSingleChoiceScore(Integer singleChoiceScore) {
this.singleChoiceScore = singleChoiceScore;
}
public Integer getJudgmentScore() {
return judgmentScore;
}
public void setJudgmentScore(Integer judgmentScore) {
this.judgmentScore = judgmentScore;
}
public void setContractorCourseId(Long contractorCourseId) public void setContractorCourseId(Long contractorCourseId)
{ {
this.contractorCourseId = contractorCourseId; this.contractorCourseId = contractorCourseId;
...@@ -134,18 +171,19 @@ public class TContractorTrainCourse extends BaseEntity ...@@ -134,18 +171,19 @@ public class TContractorTrainCourse extends BaseEntity
@Override @Override
public String toString() { public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) return "TContractorTrainCourse{" +
.append("contractorCourseId", getContractorCourseId()) "contractorCourseId=" + contractorCourseId +
.append("courseName", getCourseName()) ", courseName='" + courseName + '\'' +
.append("courseConent", getCourseConent()) ", courseConent='" + courseConent + '\'' +
.append("enclosure", getEnclosure()) ", enclosure='" + enclosure + '\'' +
.append("video", getVideo()) ", video='" + video + '\'' +
.append("qualifiedNum", getQualifiedNum()) ", qualifiedNum=" + qualifiedNum +
.append("topicNum", getTopicNum()) ", topicNum=" + topicNum +
.append("createTime", getCreateTime()) ", createUser='" + createUser + '\'' +
.append("createUser", getCreateUser()) ", isDel='" + isDel + '\'' +
.append("isDel", getIsDel()) ", multipleChoiceScore=" + multipleChoiceScore +
.append("remark", getRemark()) ", singleChoiceScore=" + singleChoiceScore +
.toString(); ", judgmentScore=" + judgmentScore +
'}';
} }
} }
...@@ -32,12 +32,31 @@ public class TContractorTrainCourseTopic extends BaseEntity ...@@ -32,12 +32,31 @@ public class TContractorTrainCourseTopic extends BaseEntity
/** 答案 */ /** 答案 */
@Excel(name = "答案") @Excel(name = "答案")
private Integer answer; private String answer;
/** 是否删除(0正常,1删除) */ /** 是否删除(0正常,1删除) */
@Excel(name = "是否删除(0正常,1删除)") @Excel(name = "是否删除(0正常,1删除)")
private String isDel; private String isDel;
/**题目类型*/
private Integer topicType;
public static long getSerialVersionUID() {
return serialVersionUID;
}
public void setAnswer(String answer) {
this.answer = answer;
}
public Integer getTopicType() {
return topicType;
}
public void setTopicType(Integer topicType) {
this.topicType = topicType;
}
public void setTopicId(Long topicId) public void setTopicId(Long topicId)
{ {
this.topicId = topicId; this.topicId = topicId;
...@@ -74,15 +93,11 @@ public class TContractorTrainCourseTopic extends BaseEntity ...@@ -74,15 +93,11 @@ public class TContractorTrainCourseTopic extends BaseEntity
{ {
return topicOption; return topicOption;
} }
public void setAnswer(Integer answer)
{
this.answer = answer;
}
public Integer getAnswer() public String getAnswer() {
{
return answer; return answer;
} }
public void setIsDel(String isDel) public void setIsDel(String isDel)
{ {
this.isDel = isDel; this.isDel = isDel;
...@@ -95,15 +110,14 @@ public class TContractorTrainCourseTopic extends BaseEntity ...@@ -95,15 +110,14 @@ public class TContractorTrainCourseTopic extends BaseEntity
@Override @Override
public String toString() { public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) return "TContractorTrainCourseTopic{" +
.append("topicId", getTopicId()) "topicId=" + topicId +
.append("contractorCourseId", getContractorCourseId()) ", contractorCourseId=" + contractorCourseId +
.append("topicTitle", getTopicTitle()) ", topicTitle='" + topicTitle + '\'' +
.append("topicOption", getTopicOption()) ", topicOption='" + topicOption + '\'' +
.append("answer", getAnswer()) ", answer='" + answer + '\'' +
.append("createTime", getCreateTime()) ", isDel='" + isDel + '\'' +
.append("isDel", getIsDel()) ", topicType=" + topicType +
.append("remark", getRemark()) '}';
.toString();
} }
} }
...@@ -55,8 +55,20 @@ public class TContractorTrainResult extends BaseEntity ...@@ -55,8 +55,20 @@ public class TContractorTrainResult extends BaseEntity
/** 是否删除(0正常,1删除) */ /** 是否删除(0正常,1删除) */
private String isDel; private String isDel;
/** 答案*/
private String answers; private String answers;
/** 转换成二维数组答案*/
private Integer[][] integers;
public Integer[][] getIntegers() {
return integers;
}
public void setIntegers(Integer[][] integers) {
this.integers = integers;
}
public static long getSerialVersionUID() { public static long getSerialVersionUID() {
return serialVersionUID; return serialVersionUID;
} }
......
...@@ -32,11 +32,11 @@ public class TContractorTrainResultDetail extends BaseEntity ...@@ -32,11 +32,11 @@ public class TContractorTrainResultDetail extends BaseEntity
/** 答案 */ /** 答案 */
@Excel(name = "答案") @Excel(name = "答案")
private Integer answer; private String answer;
/** 所选答案 */ /** 所选答案 */
@Excel(name = "所选答案") @Excel(name = "所选答案")
private Integer answerChoice; private String answerChoice;
/** 答题结果:0 对,1 错 */ /** 答题结果:0 对,1 错 */
@Excel(name = "答题结果:0 对,1 错") @Excel(name = "答题结果:0 对,1 错")
...@@ -82,24 +82,27 @@ public class TContractorTrainResultDetail extends BaseEntity ...@@ -82,24 +82,27 @@ public class TContractorTrainResultDetail extends BaseEntity
{ {
return topicOption; return topicOption;
} }
public void setAnswer(Integer answer)
{
this.answer = answer;
}
public Integer getAnswer() public String getAnswer() {
{
return answer; return answer;
} }
public void setAnswerChoice(Integer answerChoice)
{ public void setAnswer(String answer) {
this.answerChoice = answerChoice; this.answer = answer;
} }
public Integer getAnswerChoice() public static long getSerialVersionUID() {
{ return serialVersionUID;
}
public String getAnswerChoice() {
return answerChoice; return answerChoice;
} }
public void setAnswerChoice(String answerChoice) {
this.answerChoice = answerChoice;
}
public void setResult(String result) public void setResult(String result)
{ {
this.result = result; this.result = result;
......
package com.zehong.system.mapper; package com.zehong.system.mapper;
import java.util.List; import java.util.List;
import com.zehong.system.domain.TContractorTrainCourse;
import com.zehong.system.domain.TContractorTrainCourseTopic; import com.zehong.system.domain.TContractorTrainCourseTopic;
import com.zehong.system.domain.TTrainCourse;
import com.zehong.system.domain.TTrainCourseTopic;
/** /**
* 承包商及访客培训题库Mapper接口 * 承包商及访客培训题库Mapper接口
...@@ -58,4 +62,24 @@ public interface TContractorTrainCourseTopicMapper ...@@ -58,4 +62,24 @@ public interface TContractorTrainCourseTopicMapper
* @return 结果 * @return 结果
*/ */
public int deleteTContractorTrainCourseTopicByIds(Long[] topicIds); public int deleteTContractorTrainCourseTopicByIds(Long[] topicIds);
/**
* 批量新增试题
* @param topics
*/
void batchInsertTTrainCourseTopic(List<TContractorTrainCourseTopic> topics);
/**
* 更新试题数量
* @param courseId
* @return
*/
TContractorTrainCourse selectTTrainCourseById(Long courseId);
/**
* 更新试题数量
* @param course
* @return
*/
int updateTTrainCourse(TContractorTrainCourse course);
} }
...@@ -2,6 +2,7 @@ package com.zehong.system.service; ...@@ -2,6 +2,7 @@ package com.zehong.system.service;
import java.util.List; import java.util.List;
import com.zehong.system.domain.TContractorTrainCourseTopic; import com.zehong.system.domain.TContractorTrainCourseTopic;
import com.zehong.system.domain.vo.BatchTopicVo;
/** /**
* 承包商及访客培训题库Service接口 * 承包商及访客培训题库Service接口
...@@ -58,4 +59,11 @@ public interface ITContractorTrainCourseTopicService ...@@ -58,4 +59,11 @@ public interface ITContractorTrainCourseTopicService
* @return 结果 * @return 结果
*/ */
public int deleteTContractorTrainCourseTopicById(Long topicId); public int deleteTContractorTrainCourseTopicById(Long topicId);
/**
* 题库批量导入试题
* @param batchTopicVo
* @return
*/
int bachAddTopic(BatchTopicVo batchTopicVo);
} }
package com.zehong.system.service.impl; package com.zehong.system.service.impl;
import cn.hutool.core.collection.CollectionUtil;
import com.zehong.common.utils.DateUtils; import com.zehong.common.utils.DateUtils;
import com.zehong.system.domain.TContractorTrainCourse; import com.zehong.common.utils.StringUtils;
import com.zehong.system.domain.TContractorTrainCourseTopic; import com.zehong.system.domain.*;
import com.zehong.system.domain.vo.BatchTopicVo;
import com.zehong.system.mapper.TBankSubjectMapper;
import com.zehong.system.mapper.TContractorTrainCourseMapper; import com.zehong.system.mapper.TContractorTrainCourseMapper;
import com.zehong.system.mapper.TContractorTrainCourseTopicMapper; import com.zehong.system.mapper.TContractorTrainCourseTopicMapper;
import com.zehong.system.service.ITContractorTrainCourseTopicService; import com.zehong.system.service.ITContractorTrainCourseTopicService;
...@@ -11,6 +14,9 @@ import org.springframework.stereotype.Service; ...@@ -11,6 +14,9 @@ import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional; import org.springframework.transaction.annotation.Transactional;
import javax.annotation.Resource; import javax.annotation.Resource;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Date;
import java.util.List; import java.util.List;
/** /**
...@@ -26,6 +32,8 @@ public class TContractorTrainCourseTopicServiceImpl implements ITContractorTrain ...@@ -26,6 +32,8 @@ public class TContractorTrainCourseTopicServiceImpl implements ITContractorTrain
private TContractorTrainCourseTopicMapper tContractorTrainCourseTopicMapper; private TContractorTrainCourseTopicMapper tContractorTrainCourseTopicMapper;
@Resource @Resource
private TContractorTrainCourseMapper tContractorTrainCourseMapper; private TContractorTrainCourseMapper tContractorTrainCourseMapper;
@Resource
private TBankSubjectMapper tBankSubjectMapper;
/** /**
* 查询承包商及访客培训题库 * 查询承包商及访客培训题库
...@@ -115,4 +123,44 @@ public class TContractorTrainCourseTopicServiceImpl implements ITContractorTrain ...@@ -115,4 +123,44 @@ public class TContractorTrainCourseTopicServiceImpl implements ITContractorTrain
{ {
return tContractorTrainCourseTopicMapper.deleteTContractorTrainCourseTopicById(topicId); return tContractorTrainCourseTopicMapper.deleteTContractorTrainCourseTopicById(topicId);
} }
/**
* 题库批量导入试题
* @param batchTopicVo
* @return
*/
@Override
public int bachAddTopic(BatchTopicVo batchTopicVo) {
if(CollectionUtil.isEmpty(batchTopicVo.getTopicInfos()) || StringUtils.isEmpty(String.valueOf(batchTopicVo.getCourseId()))){
return 0;
}
List<TContractorTrainCourseTopic> topics = new ArrayList<>();
int count = 0;
for(BatchTopicVo.TopicInfos topic : batchTopicVo.getTopicInfos()){
//获取题库试题
TBankSubject tBankSubject = new TBankSubject();
tBankSubject.setBankId(topic.getBankId());
List<TBankSubject> bankSubjects = tBankSubjectMapper.selectTBankSubjectList(tBankSubject);
//获取随机试题
Collections.shuffle(bankSubjects);
for(int i = 0;i<topic.getQuan();i++){
TContractorTrainCourseTopic courseTopic = new TContractorTrainCourseTopic();
courseTopic.setContractorCourseId(batchTopicVo.getCourseId());
courseTopic.setTopicTitle(bankSubjects.get(i).getTopicTitle());
courseTopic.setTopicOption(bankSubjects.get(i).getTopicOption());
courseTopic.setAnswer(String.valueOf(bankSubjects.get(i).getAnswer()));
courseTopic.setCreateTime(new Date());
courseTopic.setTopicType(bankSubjects.get(i).getTopicType());
topics.add(courseTopic);
}
count += topic.getQuan();
}
//批量新增试题
tContractorTrainCourseTopicMapper.batchInsertTTrainCourseTopic(topics);
//更新试题数量
TContractorTrainCourse course = tContractorTrainCourseTopicMapper.selectTTrainCourseById(batchTopicVo.getCourseId());
course.setTopicNum(course.getTopicNum() + count);
tContractorTrainCourseTopicMapper.updateTTrainCourse(course);
return 1;
}
} }
...@@ -5,6 +5,7 @@ import java.util.HashMap; ...@@ -5,6 +5,7 @@ import java.util.HashMap;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import com.alibaba.fastjson.JSON;
import com.zehong.common.utils.DateUtils; import com.zehong.common.utils.DateUtils;
import com.zehong.system.domain.*; import com.zehong.system.domain.*;
import com.zehong.system.mapper.*; import com.zehong.system.mapper.*;
...@@ -112,21 +113,43 @@ public class TContractorTrainResultServiceImpl implements ITContractorTrainResul ...@@ -112,21 +113,43 @@ public class TContractorTrainResultServiceImpl implements ITContractorTrainResul
@Override @Override
public Map<String,Object> examination(TContractorTrainResult tContractorTrainResult) { public Map<String,Object> examination(TContractorTrainResult tContractorTrainResult) {
TContractorTrainCourseTopic tContractorTrainCourseTopic=new TContractorTrainCourseTopic(); TContractorTrainCourseTopic tContractorTrainCourseTopic=new TContractorTrainCourseTopic();
String answers = tContractorTrainResult.getAnswers(); TContractorTrainCourse tContractorTrainCourse=new TContractorTrainCourse();
//交卷答题
String[] split = answers.split(",");
//查询考试题和答案 //查询考试题和答案
List<TContractorTrainCourseTopic> tContractorTrainCourseTopics = tContractorTrainCourseTopicMapper.selectTContractorTrainCourseTopicList(tContractorTrainCourseTopic); List<TContractorTrainCourseTopic> tContractorTrainCourseTopics = tContractorTrainCourseTopicMapper.selectTContractorTrainCourseTopicList(tContractorTrainCourseTopic);
//正确答案数量 //查询需要正确几道题算通过
TContractorTrainCourse itContractorTrainCourse = tContractorTrainCourseMapper.getITContractorTrainCourse(tContractorTrainCourse);
//已获得分数
int num = 0; int num = 0;
for(Integer i=0;i<split.length;i++){ /**
if(Integer.parseInt(split[i])==tContractorTrainCourseTopics.get(i).getAnswer()){ * 大循环 共有多少答案 此循环最后只算出 得了多少分
num++; */
for (int i=0;i<tContractorTrainResult.getIntegers().length;i++){
/*题目答案*/
String answer = tContractorTrainCourseTopics.get(i).getAnswer();
//答案转换成数组
Integer[] integers = JSON.parseObject(answer, Integer[].class);
/**判断所选答案是否与正确答案长度相等*/
if (integers.length==tContractorTrainResult.getIntegers()[i].length){
boolean adopt=true;
for (int n=0;n<integers.length;n++){
if (integers[n]!=tContractorTrainResult.getIntegers()[i][n]){
adopt=false;
break;
} }
} }
TContractorTrainCourse tContractorTrainCourse=new TContractorTrainCourse(); if (adopt){
//查询需要正确几道题算通过 /** 1单选 2多选 3判断*/
TContractorTrainCourse itContractorTrainCourse = tContractorTrainCourseMapper.getITContractorTrainCourse(tContractorTrainCourse); if (tContractorTrainCourseTopics.get(i).getTopicType()==1){
num=num+itContractorTrainCourse.getSingleChoiceScore();
}else if (tContractorTrainCourseTopics.get(i).getTopicType()==2){
num=num+itContractorTrainCourse.getMultipleChoiceScore();
}else if (tContractorTrainCourseTopics.get(i).getTopicType()==3){
num=num+itContractorTrainCourse.getJudgmentScore();
}
}
}
}
//判断答题是否合格 //判断答题是否合格
if(num>=itContractorTrainCourse.getQualifiedNum()){ if(num>=itContractorTrainCourse.getQualifiedNum()){
tContractorTrainResult.setIsQualified("0"); tContractorTrainResult.setIsQualified("0");
...@@ -139,7 +162,7 @@ public class TContractorTrainResultServiceImpl implements ITContractorTrainResul ...@@ -139,7 +162,7 @@ public class TContractorTrainResultServiceImpl implements ITContractorTrainResul
//承包商及访客培训考试结果 添加方法 //承包商及访客培训考试结果 添加方法
tContractorTrainResultMapper.insertTContractorTrainResult(tContractorTrainResult); tContractorTrainResultMapper.insertTContractorTrainResult(tContractorTrainResult);
/**添加承包商及访客培训考试结果详情*/ /**添加承包商及访客培训考试结果详情*/
for (int n=0;n<split.length;n++){ for (int n=0;n<tContractorTrainResult.getIntegers().length;n++){
TContractorTrainResultDetail tContractorTrainResultDetail=new TContractorTrainResultDetail(); TContractorTrainResultDetail tContractorTrainResultDetail=new TContractorTrainResultDetail();
//设置结果管理id //设置结果管理id
tContractorTrainResultDetail.setResult(String.valueOf(tContractorTrainResult.getResultId())); tContractorTrainResultDetail.setResult(String.valueOf(tContractorTrainResult.getResultId()));
...@@ -150,13 +173,13 @@ public class TContractorTrainResultServiceImpl implements ITContractorTrainResul ...@@ -150,13 +173,13 @@ public class TContractorTrainResultServiceImpl implements ITContractorTrainResul
//答案 //答案
tContractorTrainResultDetail.setAnswer(tContractorTrainCourseTopics.get(n).getAnswer()); tContractorTrainResultDetail.setAnswer(tContractorTrainCourseTopics.get(n).getAnswer());
//所选答案 //所选答案
tContractorTrainResultDetail.setAnswerChoice(Integer.valueOf(split[n])); tContractorTrainResultDetail.setAnswerChoice(tContractorTrainResult.getAnswers());
//答案结果 //答案结果
if (Integer.valueOf(split[n])==tContractorTrainCourseTopics.get(n).getAnswer()){ // if (Integer.valueOf(split[n])==tContractorTrainCourseTopics.get(n).getAnswer()){
tContractorTrainResultDetail.setResult("0"); // tContractorTrainResultDetail.setResult("0");
}else { // }else {
tContractorTrainResultDetail.setResult("1"); // tContractorTrainResultDetail.setResult("1");
} // }
tContractorTrainResultDetail.setCreateTime(new Date()); tContractorTrainResultDetail.setCreateTime(new Date());
tContractorTrainResultDetail.setResultId(tContractorTrainResult.getResultId()); tContractorTrainResultDetail.setResultId(tContractorTrainResult.getResultId());
tContractorTrainResultDetailMapper.insertTContractorTrainResultDetail(tContractorTrainResultDetail); tContractorTrainResultDetailMapper.insertTContractorTrainResultDetail(tContractorTrainResultDetail);
......
...@@ -205,7 +205,6 @@ public class TTrainCourseServiceImpl implements ITTrainCourseService ...@@ -205,7 +205,6 @@ public class TTrainCourseServiceImpl implements ITTrainCourseService
@Override @Override
@Transactional(rollbackFor = Exception.class) @Transactional(rollbackFor = Exception.class)
public Map<String,Object> examination (Long userCourseId,Integer[][] answers){ public Map<String,Object> examination (Long userCourseId,Integer[][] answers){
//查询用户课程信息 //查询用户课程信息
TTrainUserCourse userCourse = tTrainUserCourseMapper.selectTTrainUserCourseById(userCourseId); TTrainUserCourse userCourse = tTrainUserCourseMapper.selectTTrainUserCourseById(userCourseId);
TTrainCourseTopic topic = new TTrainCourseTopic(); TTrainCourseTopic topic = new TTrainCourseTopic();
...@@ -226,7 +225,6 @@ public class TTrainCourseServiceImpl implements ITTrainCourseService ...@@ -226,7 +225,6 @@ public class TTrainCourseServiceImpl implements ITTrainCourseService
Integer qualifiedNum = c.getQualifiedNum(); Integer qualifiedNum = c.getQualifiedNum();
//已获得分数 //已获得分数
int num = 0; int num = 0;
/** /**
* 大循环 共有多少答案 此循环最后只算出 得了多少分 * 大循环 共有多少答案 此循环最后只算出 得了多少分
*/ */
...@@ -235,10 +233,8 @@ public class TTrainCourseServiceImpl implements ITTrainCourseService ...@@ -235,10 +233,8 @@ public class TTrainCourseServiceImpl implements ITTrainCourseService
int PassedNot =0; int PassedNot =0;
/*题目答案*/ /*题目答案*/
String answer = list.get(i).getAnswer(); String answer = list.get(i).getAnswer();
System.out.println("答案:"+answer);
//答案转换成数组 //答案转换成数组
Integer[] integers = JSON.parseObject(answer, Integer[].class); Integer[] integers = JSON.parseObject(answer, Integer[].class);
/**判断所选答案是否与正确答案长度相等*/ /**判断所选答案是否与正确答案长度相等*/
if (integers.length==answers[i].length){ if (integers.length==answers[i].length){
boolean adopt=true; boolean adopt=true;
...@@ -251,13 +247,10 @@ public class TTrainCourseServiceImpl implements ITTrainCourseService ...@@ -251,13 +247,10 @@ public class TTrainCourseServiceImpl implements ITTrainCourseService
if (adopt){ if (adopt){
/** 1单选 2多选 3判断*/ /** 1单选 2多选 3判断*/
if (list.get(i).getTopicType()==1){ if (list.get(i).getTopicType()==1){
System.out.println(num);
num=num+singleChoiceScore; num=num+singleChoiceScore;
}else if (list.get(i).getTopicType()==2){ }else if (list.get(i).getTopicType()==2){
System.out.println(num);
num=num+multipleChoiceScore; num=num+multipleChoiceScore;
}else if (list.get(i).getTopicType()==3){ }else if (list.get(i).getTopicType()==3){
System.out.println(num);
num=num+judgmentScore; num=num+judgmentScore;
} }
} }
...@@ -273,12 +266,12 @@ public class TTrainCourseServiceImpl implements ITTrainCourseService ...@@ -273,12 +266,12 @@ public class TTrainCourseServiceImpl implements ITTrainCourseService
} }
for(Integer i=0;i<answers.length;i++){ // for(Integer i=0;i<answers.length;i++){
// String demosub = list.get(i).getAnswer().substring(1,list.get(i).getAnswer().length()-1); // String demosub = list.get(i).getAnswer().substring(1,list.get(i).getAnswer().length()-1);
// if(Integer.parseInt(answers[i])==demosub){ // if(Integer.parseInt(answers[i])==demosub){
// num++; // num++;
// } // }
} // }
/**已获得分数*/ /**已获得分数*/
userCourse.setExaminationResult(num); userCourse.setExaminationResult(num);
/**生成日期*/ /**生成日期*/
......
...@@ -16,10 +16,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -16,10 +16,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="createUser" column="create_user" /> <result property="createUser" column="create_user" />
<result property="isDel" column="is_del" /> <result property="isDel" column="is_del" />
<result property="remark" column="remark" /> <result property="remark" column="remark" />
<result property="singleChoiceScore" column="single_choice_score" />
<result property="multipleChoiceScore" column="multiple_choice_score" />
<result property="judgmentScore" column="judgment_score" />
</resultMap> </resultMap>
<sql id="selectTContractorTrainCourseVo"> <sql id="selectTContractorTrainCourseVo">
select contractor_course_id, course_name, course_conent, enclosure, video, qualified_num, topic_num, create_time, create_user, is_del, remark from t_contractor_train_course select single_choice_score,multiple_choice_score,judgment_score,contractor_course_id, course_name, course_conent, enclosure, video, qualified_num, topic_num, create_time, create_user, is_del, remark from t_contractor_train_course
</sql> </sql>
<select id="selectTContractorTrainCourseList" parameterType="TContractorTrainCourse" resultMap="TContractorTrainCourseResult"> <select id="selectTContractorTrainCourseList" parameterType="TContractorTrainCourse" resultMap="TContractorTrainCourseResult">
...@@ -54,6 +57,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -54,6 +57,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="createUser != null">create_user,</if> <if test="createUser != null">create_user,</if>
<if test="isDel != null">is_del,</if> <if test="isDel != null">is_del,</if>
<if test="remark != null">remark,</if> <if test="remark != null">remark,</if>
<if test="singleChoiceScore != null">single_choice_score,</if>
<if test="multipleChoiceScore != null">multiple_choice_score,</if>
<if test="judgmentScore != null">judgment_score,</if>
</trim> </trim>
<trim prefix="values (" suffix=")" suffixOverrides=","> <trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="courseName != null">#{courseName},</if> <if test="courseName != null">#{courseName},</if>
...@@ -66,6 +72,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -66,6 +72,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="createUser != null">#{createUser},</if> <if test="createUser != null">#{createUser},</if>
<if test="isDel != null">#{isDel},</if> <if test="isDel != null">#{isDel},</if>
<if test="remark != null">#{remark},</if> <if test="remark != null">#{remark},</if>
<if test="singleChoiceScore != null">#{singleChoiceScore},</if>
<if test="multipleChoiceScore != null">#{multipleChoiceScore},</if>
<if test="judgmentScore != null">#{judgmentScore},</if>
</trim> </trim>
</insert> </insert>
...@@ -82,6 +91,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -82,6 +91,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="createUser != null">create_user = #{createUser},</if> <if test="createUser != null">create_user = #{createUser},</if>
<if test="isDel != null">is_del = #{isDel},</if> <if test="isDel != null">is_del = #{isDel},</if>
<if test="remark != null">remark = #{remark},</if> <if test="remark != null">remark = #{remark},</if>
<if test="singleChoiceScore != null">single_choice_score = #{singleChoiceScore},</if>
<if test="multipleChoiceScore != null">multiple_choice_score = #{multipleChoiceScore},</if>
<if test="judgmentScore != null">judgment_score = #{judgmentScore},</if>
</trim> </trim>
where contractor_course_id = #{contractorCourseId} where contractor_course_id = #{contractorCourseId}
</update> </update>
......
...@@ -13,10 +13,17 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -13,10 +13,17 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="createTime" column="create_time" /> <result property="createTime" column="create_time" />
<result property="isDel" column="is_del" /> <result property="isDel" column="is_del" />
<result property="remark" column="remark" /> <result property="remark" column="remark" />
<result property="topicType" column="topic_type" />
</resultMap>
<resultMap type="TContractorTrainCourse" id="TContractorTrainCourseResult">
<result property="contractor_course_id" column="contractorCourseId" />
</resultMap> </resultMap>
<sql id="selectTContractorTrainCourseTopicVo"> <sql id="selectTContractorTrainCourseTopicVo">
select topic_id, contractor_course_id, topic_title, topic_option, answer, create_time, is_del, remark from t_contractor_train_course_topic select topic_id, contractor_course_id, topic_title, topic_option, answer, create_time, is_del, remark,topic_type from t_contractor_train_course_topic
</sql> </sql>
<select id="selectTContractorTrainCourseTopicList" parameterType="TContractorTrainCourseTopic" resultMap="TContractorTrainCourseTopicResult"> <select id="selectTContractorTrainCourseTopicList" parameterType="TContractorTrainCourseTopic" resultMap="TContractorTrainCourseTopicResult">
...@@ -45,6 +52,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -45,6 +52,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="createTime != null">create_time,</if> <if test="createTime != null">create_time,</if>
<if test="isDel != null">is_del,</if> <if test="isDel != null">is_del,</if>
<if test="remark != null">remark,</if> <if test="remark != null">remark,</if>
<if test="topicType != null">topic_type,</if>
</trim> </trim>
<trim prefix="values (" suffix=")" suffixOverrides=","> <trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="contractorCourseId != null">#{contractorCourseId},</if> <if test="contractorCourseId != null">#{contractorCourseId},</if>
...@@ -54,6 +62,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -54,6 +62,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="createTime != null">#{createTime},</if> <if test="createTime != null">#{createTime},</if>
<if test="isDel != null">#{isDel},</if> <if test="isDel != null">#{isDel},</if>
<if test="remark != null">#{remark},</if> <if test="remark != null">#{remark},</if>
<if test="topicType != null">#{topicType},</if>
</trim> </trim>
</insert> </insert>
...@@ -67,6 +76,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -67,6 +76,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="createTime != null">create_time = #{createTime},</if> <if test="createTime != null">create_time = #{createTime},</if>
<if test="isDel != null">is_del = #{isDel},</if> <if test="isDel != null">is_del = #{isDel},</if>
<if test="remark != null">remark = #{remark},</if> <if test="remark != null">remark = #{remark},</if>
<if test="topicType != null">topic_type = #{topicType},</if>
</trim> </trim>
where topic_id = #{topicId} where topic_id = #{topicId}
</update> </update>
...@@ -81,4 +91,22 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -81,4 +91,22 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
#{topicId} #{topicId}
</foreach> </foreach>
</delete> </delete>
<insert id="batchInsertTTrainCourseTopic" parameterType="java.util.List">
insert into t_contractor_train_course_topic(contractor_course_id,topic_title,topic_option,answer,create_time,topic_type) values
<foreach collection="list" item="topic" index="index" separator="," >
(#{topic.contractorCourseId},#{topic.topicTitle},#{topic.topicOption},#{topic.answer},#{topic.createTime},#{topic.topicType})
</foreach>
</insert>
<select id="selectTTrainCourseById" resultType="com.zehong.system.domain.TContractorTrainCourse">
select topic_num topicNum from t_contractor_train_course
where contractor_course_id = #{courseId}
</select>
<update id="updateTTrainCourse" parameterType="TContractorTrainCourse">
update t_contractor_train_course set topic_num=#{topicNum}
where contractor_course_id = #{contractorCourseId}
</update>
</mapper> </mapper>
...@@ -47,7 +47,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -47,7 +47,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="topicOption != null">topic_option,</if> <if test="topicOption != null">topic_option,</if>
<if test="answer != null">answer,</if> <if test="answer != null">answer,</if>
<if test="answerChoice != null">answer_choice,</if> <if test="answerChoice != null">answer_choice,</if>
<if test="result != null">result,</if>
<if test="createTime != null">create_time,</if> <if test="createTime != null">create_time,</if>
<if test="isDel != null">is_del,</if> <if test="isDel != null">is_del,</if>
<if test="remark != null">remark,</if> <if test="remark != null">remark,</if>
...@@ -58,7 +57,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -58,7 +57,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="topicOption != null">#{topicOption},</if> <if test="topicOption != null">#{topicOption},</if>
<if test="answer != null">#{answer},</if> <if test="answer != null">#{answer},</if>
<if test="answerChoice != null">#{answerChoice},</if> <if test="answerChoice != null">#{answerChoice},</if>
<if test="result != null">#{result},</if>
<if test="createTime != null">#{createTime},</if> <if test="createTime != null">#{createTime},</if>
<if test="isDel != null">#{isDel},</if> <if test="isDel != null">#{isDel},</if>
<if test="remark != null">#{remark},</if> <if test="remark != null">#{remark},</if>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment