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);
} }
......
...@@ -7,7 +7,7 @@ import com.zehong.common.core.domain.BaseEntity; ...@@ -7,7 +7,7 @@ import com.zehong.common.core.domain.BaseEntity;
/** /**
* 承包商及访客培训对象 t_contractor_train_course * 承包商及访客培训对象 t_contractor_train_course
* *
* @author zehong * @author zehong
* @date 2022-12-27 * @date 2022-12-27
*/ */
...@@ -50,102 +50,140 @@ public class TContractorTrainCourse extends BaseEntity ...@@ -50,102 +50,140 @@ public class TContractorTrainCourse extends BaseEntity
@Excel(name = "是否删除(0正常,1删除)") @Excel(name = "是否删除(0正常,1删除)")
private String isDel; private String isDel;
public void setContractorCourseId(Long contractorCourseId) /** 多选题分数*/
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)
{ {
this.contractorCourseId = contractorCourseId; this.contractorCourseId = contractorCourseId;
} }
public Long getContractorCourseId() public Long getContractorCourseId()
{ {
return contractorCourseId; return contractorCourseId;
} }
public void setCourseName(String courseName) public void setCourseName(String courseName)
{ {
this.courseName = courseName; this.courseName = courseName;
} }
public String getCourseName() public String getCourseName()
{ {
return courseName; return courseName;
} }
public void setCourseConent(String courseConent) public void setCourseConent(String courseConent)
{ {
this.courseConent = courseConent; this.courseConent = courseConent;
} }
public String getCourseConent() public String getCourseConent()
{ {
return courseConent; return courseConent;
} }
public void setEnclosure(String enclosure) public void setEnclosure(String enclosure)
{ {
this.enclosure = enclosure; this.enclosure = enclosure;
} }
public String getEnclosure() public String getEnclosure()
{ {
return enclosure; return enclosure;
} }
public void setVideo(String video) public void setVideo(String video)
{ {
this.video = video; this.video = video;
} }
public String getVideo() public String getVideo()
{ {
return video; return video;
} }
public void setQualifiedNum(Integer qualifiedNum) public void setQualifiedNum(Integer qualifiedNum)
{ {
this.qualifiedNum = qualifiedNum; this.qualifiedNum = qualifiedNum;
} }
public Integer getQualifiedNum() public Integer getQualifiedNum()
{ {
return qualifiedNum; return qualifiedNum;
} }
public void setTopicNum(Integer topicNum) public void setTopicNum(Integer topicNum)
{ {
this.topicNum = topicNum; this.topicNum = topicNum;
} }
public Integer getTopicNum() public Integer getTopicNum()
{ {
return topicNum; return topicNum;
} }
public void setCreateUser(String createUser) public void setCreateUser(String createUser)
{ {
this.createUser = createUser; this.createUser = createUser;
} }
public String getCreateUser() public String getCreateUser()
{ {
return createUser; return createUser;
} }
public void setIsDel(String isDel) public void setIsDel(String isDel)
{ {
this.isDel = isDel; this.isDel = isDel;
} }
public String getIsDel() public String getIsDel()
{ {
return isDel; return isDel;
} }
@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 +
'}';
} }
} }
...@@ -7,7 +7,7 @@ import com.zehong.common.core.domain.BaseEntity; ...@@ -7,7 +7,7 @@ import com.zehong.common.core.domain.BaseEntity;
/** /**
* 承包商及访客培训题库对象 t_contractor_train_course_topic * 承包商及访客培训题库对象 t_contractor_train_course_topic
* *
* @author zehong * @author zehong
* @date 2022-12-27 * @date 2022-12-27
*/ */
...@@ -32,78 +32,92 @@ public class TContractorTrainCourseTopic extends BaseEntity ...@@ -32,78 +32,92 @@ 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;
public void setTopicId(Long topicId) /**题目类型*/
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)
{ {
this.topicId = topicId; this.topicId = topicId;
} }
public Long getTopicId() public Long getTopicId()
{ {
return topicId; return topicId;
} }
public void setContractorCourseId(Long contractorCourseId) public void setContractorCourseId(Long contractorCourseId)
{ {
this.contractorCourseId = contractorCourseId; this.contractorCourseId = contractorCourseId;
} }
public Long getContractorCourseId() public Long getContractorCourseId()
{ {
return contractorCourseId; return contractorCourseId;
} }
public void setTopicTitle(String topicTitle) public void setTopicTitle(String topicTitle)
{ {
this.topicTitle = topicTitle; this.topicTitle = topicTitle;
} }
public String getTopicTitle() public String getTopicTitle()
{ {
return topicTitle; return topicTitle;
} }
public void setTopicOption(String topicOption) public void setTopicOption(String topicOption)
{ {
this.topicOption = topicOption; this.topicOption = topicOption;
} }
public String getTopicOption() public String getTopicOption()
{ {
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;
} }
public String getIsDel() public String getIsDel()
{ {
return isDel; return isDel;
} }
@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;
} }
......
...@@ -7,7 +7,7 @@ import com.zehong.common.core.domain.BaseEntity; ...@@ -7,7 +7,7 @@ import com.zehong.common.core.domain.BaseEntity;
/** /**
* 承包商及访客培训考试结果详情对象 t_contractor_train_result_detail * 承包商及访客培训考试结果详情对象 t_contractor_train_result_detail
* *
* @author wu * @author wu
* @date 2022-12-30 * @date 2022-12-30
*/ */
...@@ -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 错")
...@@ -46,75 +46,78 @@ public class TContractorTrainResultDetail extends BaseEntity ...@@ -46,75 +46,78 @@ public class TContractorTrainResultDetail extends BaseEntity
@Excel(name = "是否删除(0正常,1删除)") @Excel(name = "是否删除(0正常,1删除)")
private String isDel; private String isDel;
public void setDetailId(Long detailId) public void setDetailId(Long detailId)
{ {
this.detailId = detailId; this.detailId = detailId;
} }
public Long getDetailId() public Long getDetailId()
{ {
return detailId; return detailId;
} }
public void setResultId(Long resultId) public void setResultId(Long resultId)
{ {
this.resultId = resultId; this.resultId = resultId;
} }
public Long getResultId() public Long getResultId()
{ {
return resultId; return resultId;
} }
public void setTopicTitle(String topicTitle) public void setTopicTitle(String topicTitle)
{ {
this.topicTitle = topicTitle; this.topicTitle = topicTitle;
} }
public String getTopicTitle() public String getTopicTitle()
{ {
return topicTitle; return topicTitle;
} }
public void setTopicOption(String topicOption) public void setTopicOption(String topicOption)
{ {
this.topicOption = topicOption; this.topicOption = topicOption;
} }
public String getTopicOption() public String getTopicOption()
{ {
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 setResult(String result)
public void setAnswerChoice(String answerChoice) {
this.answerChoice = answerChoice;
}
public void setResult(String result)
{ {
this.result = result; this.result = result;
} }
public String getResult() public String getResult()
{ {
return result; return result;
} }
public void setIsDel(String isDel) public void setIsDel(String isDel)
{ {
this.isDel = isDel; this.isDel = isDel;
} }
public String getIsDel() public String getIsDel()
{ {
return isDel; return isDel;
} }
......
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接口
* *
* @author zehong * @author zehong
* @date 2022-12-27 * @date 2022-12-27
*/ */
public interface TContractorTrainCourseTopicMapper public interface TContractorTrainCourseTopicMapper
{ {
/** /**
* 查询承包商及访客培训题库 * 查询承包商及访客培训题库
* *
* @param topicId 承包商及访客培训题库ID * @param topicId 承包商及访客培训题库ID
* @return 承包商及访客培训题库 * @return 承包商及访客培训题库
*/ */
...@@ -21,7 +25,7 @@ public interface TContractorTrainCourseTopicMapper ...@@ -21,7 +25,7 @@ public interface TContractorTrainCourseTopicMapper
/** /**
* 查询承包商及访客培训题库列表 * 查询承包商及访客培训题库列表
* *
* @param tContractorTrainCourseTopic 承包商及访客培训题库 * @param tContractorTrainCourseTopic 承包商及访客培训题库
* @return 承包商及访客培训题库集合 * @return 承包商及访客培训题库集合
*/ */
...@@ -29,7 +33,7 @@ public interface TContractorTrainCourseTopicMapper ...@@ -29,7 +33,7 @@ public interface TContractorTrainCourseTopicMapper
/** /**
* 新增承包商及访客培训题库 * 新增承包商及访客培训题库
* *
* @param tContractorTrainCourseTopic 承包商及访客培训题库 * @param tContractorTrainCourseTopic 承包商及访客培训题库
* @return 结果 * @return 结果
*/ */
...@@ -37,7 +41,7 @@ public interface TContractorTrainCourseTopicMapper ...@@ -37,7 +41,7 @@ public interface TContractorTrainCourseTopicMapper
/** /**
* 修改承包商及访客培训题库 * 修改承包商及访客培训题库
* *
* @param tContractorTrainCourseTopic 承包商及访客培训题库 * @param tContractorTrainCourseTopic 承包商及访客培训题库
* @return 结果 * @return 结果
*/ */
...@@ -45,7 +49,7 @@ public interface TContractorTrainCourseTopicMapper ...@@ -45,7 +49,7 @@ public interface TContractorTrainCourseTopicMapper
/** /**
* 删除承包商及访客培训题库 * 删除承包商及访客培训题库
* *
* @param topicId 承包商及访客培训题库ID * @param topicId 承包商及访客培训题库ID
* @return 结果 * @return 结果
*/ */
...@@ -53,9 +57,29 @@ public interface TContractorTrainCourseTopicMapper ...@@ -53,9 +57,29 @@ public interface TContractorTrainCourseTopicMapper
/** /**
* 批量删除承包商及访客培训题库 * 批量删除承包商及访客培训题库
* *
* @param topicIds 需要删除的数据ID * @param topicIds 需要删除的数据ID
* @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,18 +2,19 @@ package com.zehong.system.service; ...@@ -2,18 +2,19 @@ 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接口
* *
* @author zehong * @author zehong
* @date 2022-12-27 * @date 2022-12-27
*/ */
public interface ITContractorTrainCourseTopicService public interface ITContractorTrainCourseTopicService
{ {
/** /**
* 查询承包商及访客培训题库 * 查询承包商及访客培训题库
* *
* @param topicId 承包商及访客培训题库ID * @param topicId 承包商及访客培训题库ID
* @return 承包商及访客培训题库 * @return 承包商及访客培训题库
*/ */
...@@ -21,7 +22,7 @@ public interface ITContractorTrainCourseTopicService ...@@ -21,7 +22,7 @@ public interface ITContractorTrainCourseTopicService
/** /**
* 查询承包商及访客培训题库列表 * 查询承包商及访客培训题库列表
* *
* @param tContractorTrainCourseTopic 承包商及访客培训题库 * @param tContractorTrainCourseTopic 承包商及访客培训题库
* @return 承包商及访客培训题库集合 * @return 承包商及访客培训题库集合
*/ */
...@@ -29,7 +30,7 @@ public interface ITContractorTrainCourseTopicService ...@@ -29,7 +30,7 @@ public interface ITContractorTrainCourseTopicService
/** /**
* 新增承包商及访客培训题库 * 新增承包商及访客培训题库
* *
* @param tContractorTrainCourseTopic 承包商及访客培训题库 * @param tContractorTrainCourseTopic 承包商及访客培训题库
* @return 结果 * @return 结果
*/ */
...@@ -37,7 +38,7 @@ public interface ITContractorTrainCourseTopicService ...@@ -37,7 +38,7 @@ public interface ITContractorTrainCourseTopicService
/** /**
* 修改承包商及访客培训题库 * 修改承包商及访客培训题库
* *
* @param tContractorTrainCourseTopic 承包商及访客培训题库 * @param tContractorTrainCourseTopic 承包商及访客培训题库
* @return 结果 * @return 结果
*/ */
...@@ -45,7 +46,7 @@ public interface ITContractorTrainCourseTopicService ...@@ -45,7 +46,7 @@ public interface ITContractorTrainCourseTopicService
/** /**
* 批量删除承包商及访客培训题库 * 批量删除承包商及访客培训题库
* *
* @param topicIds 需要删除的承包商及访客培训题库ID * @param topicIds 需要删除的承包商及访客培训题库ID
* @return 结果 * @return 结果
*/ */
...@@ -53,9 +54,16 @@ public interface ITContractorTrainCourseTopicService ...@@ -53,9 +54,16 @@ public interface ITContractorTrainCourseTopicService
/** /**
* 删除承包商及访客培训题库信息 * 删除承包商及访客培训题库信息
* *
* @param topicId 承包商及访客培训题库ID * @param topicId 承包商及访客培训题库ID
* @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,25 +14,30 @@ import org.springframework.stereotype.Service; ...@@ -11,25 +14,30 @@ 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;
/** /**
* 承包商及访客培训题库Service业务层处理 * 承包商及访客培训题库Service业务层处理
* *
* @author zehong * @author zehong
* @date 2022-12-27 * @date 2022-12-27
*/ */
@Service @Service
public class TContractorTrainCourseTopicServiceImpl implements ITContractorTrainCourseTopicService public class TContractorTrainCourseTopicServiceImpl implements ITContractorTrainCourseTopicService
{ {
@Autowired @Autowired
private TContractorTrainCourseTopicMapper tContractorTrainCourseTopicMapper; private TContractorTrainCourseTopicMapper tContractorTrainCourseTopicMapper;
@Resource @Resource
private TContractorTrainCourseMapper tContractorTrainCourseMapper; private TContractorTrainCourseMapper tContractorTrainCourseMapper;
@Resource
private TBankSubjectMapper tBankSubjectMapper;
/** /**
* 查询承包商及访客培训题库 * 查询承包商及访客培训题库
* *
* @param topicId 承包商及访客培训题库ID * @param topicId 承包商及访客培训题库ID
* @return 承包商及访客培训题库 * @return 承包商及访客培训题库
*/ */
...@@ -41,7 +49,7 @@ public class TContractorTrainCourseTopicServiceImpl implements ITContractorTrain ...@@ -41,7 +49,7 @@ public class TContractorTrainCourseTopicServiceImpl implements ITContractorTrain
/** /**
* 查询承包商及访客培训题库列表 * 查询承包商及访客培训题库列表
* *
* @param tContractorTrainCourseTopic 承包商及访客培训题库 * @param tContractorTrainCourseTopic 承包商及访客培训题库
* @return 承包商及访客培训题库 * @return 承包商及访客培训题库
*/ */
...@@ -53,7 +61,7 @@ public class TContractorTrainCourseTopicServiceImpl implements ITContractorTrain ...@@ -53,7 +61,7 @@ public class TContractorTrainCourseTopicServiceImpl implements ITContractorTrain
/** /**
* 新增承包商及访客培训题库 * 新增承包商及访客培训题库
* *
* @param tContractorTrainCourseTopic 承包商及访客培训题库 * @param tContractorTrainCourseTopic 承包商及访客培训题库
* @return 结果 * @return 结果
*/ */
...@@ -72,7 +80,7 @@ public class TContractorTrainCourseTopicServiceImpl implements ITContractorTrain ...@@ -72,7 +80,7 @@ public class TContractorTrainCourseTopicServiceImpl implements ITContractorTrain
/** /**
* 修改承包商及访客培训题库 * 修改承包商及访客培训题库
* *
* @param tContractorTrainCourseTopic 承包商及访客培训题库 * @param tContractorTrainCourseTopic 承包商及访客培训题库
* @return 结果 * @return 结果
*/ */
...@@ -84,7 +92,7 @@ public class TContractorTrainCourseTopicServiceImpl implements ITContractorTrain ...@@ -84,7 +92,7 @@ public class TContractorTrainCourseTopicServiceImpl implements ITContractorTrain
/** /**
* 批量删除承包商及访客培训题库 * 批量删除承包商及访客培训题库
* *
* @param topicIds 需要删除的承包商及访客培训题库ID * @param topicIds 需要删除的承包商及访客培训题库ID
* @return 结果 * @return 结果
*/ */
...@@ -106,7 +114,7 @@ public class TContractorTrainCourseTopicServiceImpl implements ITContractorTrain ...@@ -106,7 +114,7 @@ public class TContractorTrainCourseTopicServiceImpl implements ITContractorTrain
/** /**
* 删除承包商及访客培训题库信息 * 删除承包商及访客培训题库信息
* *
* @param topicId 承包商及访客培训题库ID * @param topicId 承包商及访客培训题库ID
* @return 结果 * @return 结果
*/ */
...@@ -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;
}
}
if (adopt){
/** 1单选 2多选 3判断*/
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();
}
}
} }
} }
TContractorTrainCourse tContractorTrainCourse=new TContractorTrainCourse();
//查询需要正确几道题算通过
TContractorTrainCourse itContractorTrainCourse = tContractorTrainCourseMapper.getITContractorTrainCourse(tContractorTrainCourse);
//判断答题是否合格 //判断答题是否合格
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>
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd"> "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.zehong.system.mapper.TContractorTrainCourseTopicMapper"> <mapper namespace="com.zehong.system.mapper.TContractorTrainCourseTopicMapper">
<resultMap type="TContractorTrainCourseTopic" id="TContractorTrainCourseTopicResult"> <resultMap type="TContractorTrainCourseTopic" id="TContractorTrainCourseTopicResult">
<result property="topicId" column="topic_id" /> <result property="topicId" column="topic_id" />
<result property="contractorCourseId" column="contractor_course_id" /> <result property="contractorCourseId" column="contractor_course_id" />
...@@ -13,15 +13,22 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -13,15 +13,22 @@ 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">
<include refid="selectTContractorTrainCourseTopicVo"/> <include refid="selectTContractorTrainCourseTopicVo"/>
<where> <where>
<if test="contractorCourseId != null "> and contractor_course_id = #{contractorCourseId}</if> <if test="contractorCourseId != null "> and contractor_course_id = #{contractorCourseId}</if>
<if test="topicTitle != null and topicTitle != ''"> and topic_title = #{topicTitle}</if> <if test="topicTitle != null and topicTitle != ''"> and topic_title = #{topicTitle}</if>
<if test="topicOption != null and topicOption != ''"> and topic_option = #{topicOption}</if> <if test="topicOption != null and topicOption != ''"> and topic_option = #{topicOption}</if>
...@@ -29,12 +36,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -29,12 +36,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="isDel != null and isDel != ''"> and is_del = #{isDel}</if> <if test="isDel != null and isDel != ''"> and is_del = #{isDel}</if>
</where> </where>
</select> </select>
<select id="selectTContractorTrainCourseTopicById" parameterType="Long" resultMap="TContractorTrainCourseTopicResult"> <select id="selectTContractorTrainCourseTopicById" parameterType="Long" resultMap="TContractorTrainCourseTopicResult">
<include refid="selectTContractorTrainCourseTopicVo"/> <include refid="selectTContractorTrainCourseTopicVo"/>
where topic_id = #{topicId} where topic_id = #{topicId}
</select> </select>
<insert id="insertTContractorTrainCourseTopic" parameterType="TContractorTrainCourseTopic" useGeneratedKeys="true" keyProperty="topicId"> <insert id="insertTContractorTrainCourseTopic" parameterType="TContractorTrainCourseTopic" useGeneratedKeys="true" keyProperty="topicId">
insert into t_contractor_train_course_topic insert into t_contractor_train_course_topic
<trim prefix="(" suffix=")" suffixOverrides=","> <trim prefix="(" suffix=")" suffixOverrides=",">
...@@ -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>
...@@ -76,9 +86,27 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -76,9 +86,27 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</delete> </delete>
<delete id="deleteTContractorTrainCourseTopicByIds" parameterType="String"> <delete id="deleteTContractorTrainCourseTopicByIds" parameterType="String">
delete from t_contractor_train_course_topic where topic_id in delete from t_contractor_train_course_topic where topic_id in
<foreach item="topicId" collection="array" open="(" separator="," close=")"> <foreach item="topicId" collection="array" open="(" separator="," close=")">
#{topicId} #{topicId}
</foreach> </foreach>
</delete> </delete>
</mapper>
\ No newline at end of file <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>
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd"> "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.zehong.system.mapper.TContractorTrainResultDetailMapper"> <mapper namespace="com.zehong.system.mapper.TContractorTrainResultDetailMapper">
<resultMap type="TContractorTrainResultDetail" id="TContractorTrainResultDetailResult"> <resultMap type="TContractorTrainResultDetail" id="TContractorTrainResultDetailResult">
<result property="detailId" column="detail_id" /> <result property="detailId" column="detail_id" />
<result property="resultId" column="result_id" /> <result property="resultId" column="result_id" />
...@@ -23,7 +23,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -23,7 +23,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="selectTContractorTrainResultDetailList" parameterType="TContractorTrainResultDetail" resultMap="TContractorTrainResultDetailResult"> <select id="selectTContractorTrainResultDetailList" parameterType="TContractorTrainResultDetail" resultMap="TContractorTrainResultDetailResult">
<include refid="selectTContractorTrainResultDetailVo"/> <include refid="selectTContractorTrainResultDetailVo"/>
<where> <where>
<if test="resultId != null "> and result_id = #{resultId}</if> <if test="resultId != null "> and result_id = #{resultId}</if>
<if test="topicTitle != null and topicTitle != ''"> and topic_title = #{topicTitle}</if> <if test="topicTitle != null and topicTitle != ''"> and topic_title = #{topicTitle}</if>
<if test="topicOption != null and topicOption != ''"> and topic_option = #{topicOption}</if> <if test="topicOption != null and topicOption != ''"> and topic_option = #{topicOption}</if>
...@@ -33,12 +33,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -33,12 +33,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="isDel != null and isDel != ''"> and is_del = #{isDel}</if> <if test="isDel != null and isDel != ''"> and is_del = #{isDel}</if>
</where> </where>
</select> </select>
<select id="selectTContractorTrainResultDetailById" parameterType="Long" resultMap="TContractorTrainResultDetailResult"> <select id="selectTContractorTrainResultDetailById" parameterType="Long" resultMap="TContractorTrainResultDetailResult">
<include refid="selectTContractorTrainResultDetailVo"/> <include refid="selectTContractorTrainResultDetailVo"/>
where detail_id = #{detailId} where detail_id = #{detailId}
</select> </select>
<insert id="insertTContractorTrainResultDetail" parameterType="TContractorTrainResultDetail" useGeneratedKeys="true" keyProperty="detailId"> <insert id="insertTContractorTrainResultDetail" parameterType="TContractorTrainResultDetail" useGeneratedKeys="true" keyProperty="detailId">
insert into t_contractor_train_result_detail insert into t_contractor_train_result_detail
<trim prefix="(" suffix=")" suffixOverrides=","> <trim prefix="(" suffix=")" suffixOverrides=",">
...@@ -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>
...@@ -86,9 +84,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -86,9 +84,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</delete> </delete>
<delete id="deleteTContractorTrainResultDetailByIds" parameterType="String"> <delete id="deleteTContractorTrainResultDetailByIds" parameterType="String">
delete from t_contractor_train_result_detail where detail_id in delete from t_contractor_train_result_detail where detail_id in
<foreach item="detailId" collection="array" open="(" separator="," close=")"> <foreach item="detailId" collection="array" open="(" separator="," close=")">
#{detailId} #{detailId}
</foreach> </foreach>
</delete> </delete>
</mapper> </mapper>
\ No newline at end of file
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