Commit 15a3642a authored by 吴卿华's avatar 吴卿华

Merge branch 'master' of D:\项目\正元安全生产\zhengyuan-danger-chemistry-manage with conflicts.

parent 1decead9
...@@ -25,7 +25,7 @@ import java.util.Map; ...@@ -25,7 +25,7 @@ import java.util.Map;
/** /**
* 培训课程Controller * 培训课程Controller
* *
* @author zehong * @author zehong
* @date 2022-09-19 * @date 2022-09-19
*/ */
...@@ -65,7 +65,6 @@ public class TTrainCourseController extends BaseController ...@@ -65,7 +65,6 @@ public class TTrainCourseController extends BaseController
@ApiOperation("用户课程考试") @ApiOperation("用户课程考试")
@GetMapping("/examination") @GetMapping("/examination")
public AjaxResult examination(Long userCourseId,String answers){ public AjaxResult examination(Long userCourseId,String answers){
Map<String,Object> map = tTrainCourseService.examination(userCourseId, answers.split(",")); Map<String,Object> map = tTrainCourseService.examination(userCourseId, answers.split(","));
return AjaxResult.success(map); return AjaxResult.success(map);
} }
......
...@@ -21,7 +21,7 @@ spring: ...@@ -21,7 +21,7 @@ spring:
druid: druid:
# 主库数据源 # 主库数据源
master: master:
url: jdbc:mysql://36.138.181.113:33060/danger_manage_area_a?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8 url: jdbc:mysql://36.138.181.113:33060/danger_manage_area_test?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
username: root username: root
password: zehong_/sjz!D password: zehong_/sjz!D
# 从库数据源 # 从库数据源
...@@ -75,11 +75,11 @@ spring: ...@@ -75,11 +75,11 @@ spring:
# 地址 # 地址
host: 127.0.0.1 host: 127.0.0.1
# 端口,默认为6379 # 端口,默认为6379
port: 6378 port: 6379
# 数据库索引 # 数据库索引
database: 1 database: 1
# 密码 # 密码
password: Redis@2021 password:
# 连接超时时间 # 连接超时时间
timeout: 10s timeout: 10s
lettuce: lettuce:
......
...@@ -73,7 +73,7 @@ spring: ...@@ -73,7 +73,7 @@ spring:
# redis 配置 # redis 配置
redis: redis:
# 地址 # 地址
host: localhost host: 127.0.0.1
# 端口,默认为6379 # 端口,默认为6379
port: 6379 port: 6379
# 数据库索引 # 数据库索引
......
...@@ -21,7 +21,7 @@ spring: ...@@ -21,7 +21,7 @@ spring:
druid: druid:
# 主库数据源 # 主库数据源
master: master:
url: jdbc:mysql://36.138.181.113:3306/danger_manage_area_b?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8 url: jdbc:mysql://36.138.181.113:3306/danger_manage_area_test?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
username: root username: root
password: root@123 password: root@123
# 从库数据源 # 从库数据源
...@@ -75,11 +75,11 @@ spring: ...@@ -75,11 +75,11 @@ spring:
# 地址 # 地址
host: 127.0.0.1 host: 127.0.0.1
# 端口,默认为6379 # 端口,默认为6379
port: 6378 port: 6379
# 数据库索引 # 数据库索引
database: 0 database: 0
# 密码 # 密码
password: Redis@2021 password:
# 连接超时时间 # 连接超时时间
timeout: 10s timeout: 10s
lettuce: lettuce:
......
...@@ -11,7 +11,7 @@ import com.zehong.common.core.domain.BaseEntity; ...@@ -11,7 +11,7 @@ import com.zehong.common.core.domain.BaseEntity;
/** /**
* 培训课程对象 t_train_course * 培训课程对象 t_train_course
* *
* @author zehong * @author zehong
* @date 2022-09-19 * @date 2022-09-19
*/ */
...@@ -54,7 +54,7 @@ public class TTrainCourse extends BaseEntity ...@@ -54,7 +54,7 @@ public class TTrainCourse extends BaseEntity
private String video; private String video;
/** 答题合格数 */ /** 答题合格数 */
@Excel(name = "答题合格数") @Excel(name = "答题合格数")
private Integer qualifiedNum; private Integer qualifiedNum;
/** 录入题数量 */ /** 录入题数量 */
...@@ -91,6 +91,43 @@ public class TTrainCourse extends BaseEntity ...@@ -91,6 +91,43 @@ public class TTrainCourse extends BaseEntity
private Integer duration; private Integer duration;
/** 多选题分数*/
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 Integer getDuration() { public Integer getDuration() {
return duration; return duration;
} }
...@@ -120,106 +157,106 @@ public class TTrainCourse extends BaseEntity ...@@ -120,106 +157,106 @@ public class TTrainCourse extends BaseEntity
this.courseId = courseId; this.courseId = courseId;
} }
public Long getCourseId() public Long getCourseId()
{ {
return courseId; return courseId;
} }
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 setCourseType(Long courseType) public void setCourseType(Long courseType)
{ {
this.courseType = courseType; this.courseType = courseType;
} }
public Long getCourseType() public Long getCourseType()
{ {
return courseType; return courseType;
} }
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 setStatus(Integer status) public void setStatus(Integer status)
{ {
this.status = status; this.status = status;
} }
public Integer getStatus() public Integer getStatus()
{ {
return status; return status;
} }
public void setReleaseTime(Date releaseTime) public void setReleaseTime(Date releaseTime)
{ {
this.releaseTime = releaseTime; this.releaseTime = releaseTime;
} }
public Date getReleaseTime() public Date getReleaseTime()
{ {
return releaseTime; return releaseTime;
} }
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(Integer isDel) public void setIsDel(Integer isDel)
{ {
this.isDel = isDel; this.isDel = isDel;
} }
public Integer getIsDel() public Integer getIsDel()
{ {
return isDel; return isDel;
} }
......
...@@ -5,9 +5,11 @@ import com.zehong.common.core.domain.BaseEntity; ...@@ -5,9 +5,11 @@ import com.zehong.common.core.domain.BaseEntity;
import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle; import org.apache.commons.lang3.builder.ToStringStyle;
import java.util.List;
/** /**
* 培训课程题库对象 t_train_course_topic * 培训课程题库对象 t_train_course_topic
* *
* @author zehong * @author zehong
* @date 2022-09-19 * @date 2022-09-19
*/ */
...@@ -31,55 +33,84 @@ public class TTrainCourseTopic extends BaseEntity ...@@ -31,55 +33,84 @@ public class TTrainCourseTopic extends BaseEntity
private String topicOption; private String topicOption;
/** 答案 */ /** 答案 */
// @Excel(name = "答案")
// private Integer answer;
/** 答案 */
@Excel(name = "答案") @Excel(name = "答案")
private Integer answer; private String answer;
/** 题目类型 1单选 2多选 3判断 */
private Integer topicType;
/** 答题合格分数*/
private Integer qualifiedNum;
public Integer getQualifiedNum() {
return qualifiedNum;
}
public void setQualifiedNum(Integer qualifiedNum) {
this.qualifiedNum = qualifiedNum;
}
public static long getSerialVersionUID() {
return serialVersionUID;
}
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;
} }
public Long getTopicId() public Long getTopicId()
{ {
return topicId; return topicId;
} }
public void setCourseId(Long courseId) public void setCourseId(Long courseId)
{ {
this.courseId = courseId; this.courseId = courseId;
} }
public Long getCourseId() public Long getCourseId()
{ {
return courseId; return courseId;
} }
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 setAnswer(String answer) {
this.answer = answer;
}
@Override @Override
public String toString() { public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
......
...@@ -23,12 +23,12 @@ import java.util.stream.Collectors; ...@@ -23,12 +23,12 @@ import java.util.stream.Collectors;
/** /**
* 培训课程Service业务层处理 * 培训课程Service业务层处理
* *
* @author zehong * @author zehong
* @date 2022-09-19 * @date 2022-09-19
*/ */
@Service @Service
public class TTrainCourseServiceImpl implements ITTrainCourseService public class TTrainCourseServiceImpl implements ITTrainCourseService
{ {
@Autowired @Autowired
private TTrainCourseMapper tTrainCourseMapper; private TTrainCourseMapper tTrainCourseMapper;
...@@ -41,7 +41,7 @@ public class TTrainCourseServiceImpl implements ITTrainCourseService ...@@ -41,7 +41,7 @@ public class TTrainCourseServiceImpl implements ITTrainCourseService
/** /**
* 查询培训课程 * 查询培训课程
* *
* @param courseId 培训课程ID * @param courseId 培训课程ID
* @return 培训课程 * @return 培训课程
*/ */
...@@ -70,7 +70,7 @@ public class TTrainCourseServiceImpl implements ITTrainCourseService ...@@ -70,7 +70,7 @@ public class TTrainCourseServiceImpl implements ITTrainCourseService
} }
/** /**
* 查询培训课程列表 * 查询培训课程列表
* *
* @param tTrainCourse 培训课程 * @param tTrainCourse 培训课程
* @return 培训课程 * @return 培训课程
*/ */
...@@ -82,7 +82,7 @@ public class TTrainCourseServiceImpl implements ITTrainCourseService ...@@ -82,7 +82,7 @@ public class TTrainCourseServiceImpl implements ITTrainCourseService
/** /**
* 新增培训课程 * 新增培训课程
* *
* @param tTrainCourse 培训课程 * @param tTrainCourse 培训课程
* @return 结果 * @return 结果
*/ */
...@@ -105,7 +105,7 @@ public class TTrainCourseServiceImpl implements ITTrainCourseService ...@@ -105,7 +105,7 @@ public class TTrainCourseServiceImpl implements ITTrainCourseService
/** /**
* 修改培训课程 * 修改培训课程
* *
* @param tTrainCourse 培训课程 * @param tTrainCourse 培训课程
* @return 结果 * @return 结果
*/ */
...@@ -126,7 +126,7 @@ public class TTrainCourseServiceImpl implements ITTrainCourseService ...@@ -126,7 +126,7 @@ public class TTrainCourseServiceImpl implements ITTrainCourseService
/** /**
* 批量删除培训课程 * 批量删除培训课程
* *
* @param courseIds 需要删除的培训课程ID * @param courseIds 需要删除的培训课程ID
* @return 结果 * @return 结果
*/ */
...@@ -138,7 +138,7 @@ public class TTrainCourseServiceImpl implements ITTrainCourseService ...@@ -138,7 +138,7 @@ public class TTrainCourseServiceImpl implements ITTrainCourseService
/** /**
* 删除培训课程信息 * 删除培训课程信息
* *
* @param courseId 培训课程ID * @param courseId 培训课程ID
* @return 结果 * @return 结果
*/ */
...@@ -184,16 +184,18 @@ public class TTrainCourseServiceImpl implements ITTrainCourseService ...@@ -184,16 +184,18 @@ public class TTrainCourseServiceImpl implements ITTrainCourseService
@Override @Override
@Transactional(rollbackFor = Exception.class) @Transactional(rollbackFor = Exception.class)
public Map<String,Object> examination (Long userCourseId,String[] answers){ public Map<String,Object> examination (Long userCourseId,String[] answers){
System.out.println(answers[0]);
TTrainUserCourse userCourse = tTrainUserCourseMapper.selectTTrainUserCourseById(userCourseId); TTrainUserCourse userCourse = tTrainUserCourseMapper.selectTTrainUserCourseById(userCourseId);
TTrainCourseTopic topic = new TTrainCourseTopic(); TTrainCourseTopic topic = new TTrainCourseTopic();
topic.setCourseId(userCourse.getCourseId()); topic.setCourseId(userCourse.getCourseId());
List<TTrainCourseTopic> list = tTrainCourseTopicMapper.selectTTrainCourseTopicList(topic); List<TTrainCourseTopic> list = tTrainCourseTopicMapper.selectTTrainCourseTopicList(topic);
int num = 0; int num = 0;
for(Integer i=0;i<answers.length;i++){ // for(Integer i=0;i<answers.length;i++){
if(Integer.parseInt(answers[i])==list.get(i).getAnswer()){ // String demosub = list.get(i).getAnswer().substring(1,list.get(i).getAnswer().length()-1);
num++; // if(Integer.parseInt(answers[i])==demosub){
} // num++;
} // }
// }
userCourse.setExaminationResult(num); userCourse.setExaminationResult(num);
userCourse.setExaminationTime(new Date()); userCourse.setExaminationTime(new Date());
TTrainCourse c = tTrainCourseMapper.selectTTrainCourseById(userCourse.getCourseId()); TTrainCourse c = tTrainCourseMapper.selectTTrainCourseById(userCourse.getCourseId());
......
...@@ -23,12 +23,12 @@ import java.util.List; ...@@ -23,12 +23,12 @@ import java.util.List;
/** /**
* 培训课程题库Service业务层处理 * 培训课程题库Service业务层处理
* *
* @author zehong * @author zehong
* @date 2022-09-19 * @date 2022-09-19
*/ */
@Service @Service
public class TTrainCourseTopicServiceImpl implements ITTrainCourseTopicService public class TTrainCourseTopicServiceImpl implements ITTrainCourseTopicService
{ {
@Autowired @Autowired
private TTrainCourseTopicMapper tTrainCourseTopicMapper; private TTrainCourseTopicMapper tTrainCourseTopicMapper;
...@@ -39,7 +39,7 @@ public class TTrainCourseTopicServiceImpl implements ITTrainCourseTopicService ...@@ -39,7 +39,7 @@ public class TTrainCourseTopicServiceImpl implements ITTrainCourseTopicService
/** /**
* 查询培训课程题库 * 查询培训课程题库
* *
* @param topicId 培训课程题库ID * @param topicId 培训课程题库ID
* @return 培训课程题库 * @return 培训课程题库
*/ */
...@@ -51,7 +51,7 @@ public class TTrainCourseTopicServiceImpl implements ITTrainCourseTopicService ...@@ -51,7 +51,7 @@ public class TTrainCourseTopicServiceImpl implements ITTrainCourseTopicService
/** /**
* 查询培训课程题库列表 * 查询培训课程题库列表
* *
* @param tTrainCourseTopic 培训课程题库 * @param tTrainCourseTopic 培训课程题库
* @return 培训课程题库 * @return 培训课程题库
*/ */
...@@ -68,7 +68,7 @@ public class TTrainCourseTopicServiceImpl implements ITTrainCourseTopicService ...@@ -68,7 +68,7 @@ public class TTrainCourseTopicServiceImpl implements ITTrainCourseTopicService
/** /**
* 新增培训课程题库 * 新增培训课程题库
* *
* @param tTrainCourseTopic 培训课程题库 * @param tTrainCourseTopic 培训课程题库
* @return 结果 * @return 结果
*/ */
...@@ -87,7 +87,7 @@ public class TTrainCourseTopicServiceImpl implements ITTrainCourseTopicService ...@@ -87,7 +87,7 @@ public class TTrainCourseTopicServiceImpl implements ITTrainCourseTopicService
/** /**
* 修改培训课程题库 * 修改培训课程题库
* *
* @param tTrainCourseTopic 培训课程题库 * @param tTrainCourseTopic 培训课程题库
* @return 结果 * @return 结果
*/ */
...@@ -99,7 +99,7 @@ public class TTrainCourseTopicServiceImpl implements ITTrainCourseTopicService ...@@ -99,7 +99,7 @@ public class TTrainCourseTopicServiceImpl implements ITTrainCourseTopicService
/** /**
* 批量删除培训课程题库 * 批量删除培训课程题库
* *
* @param topicIds 需要删除的培训课程题库ID * @param topicIds 需要删除的培训课程题库ID
* @return 结果 * @return 结果
*/ */
...@@ -111,7 +111,7 @@ public class TTrainCourseTopicServiceImpl implements ITTrainCourseTopicService ...@@ -111,7 +111,7 @@ public class TTrainCourseTopicServiceImpl implements ITTrainCourseTopicService
/** /**
* 删除培训课程题库信息 * 删除培训课程题库信息
* *
* @param topicId 培训课程题库ID * @param topicId 培训课程题库ID
* @return 结果 * @return 结果
*/ */
...@@ -156,7 +156,7 @@ public class TTrainCourseTopicServiceImpl implements ITTrainCourseTopicService ...@@ -156,7 +156,7 @@ public class TTrainCourseTopicServiceImpl implements ITTrainCourseTopicService
courseTopic.setCourseId(batchTopicVo.getCourseId()); courseTopic.setCourseId(batchTopicVo.getCourseId());
courseTopic.setTopicTitle(bankSubjects.get(i).getTopicTitle()); courseTopic.setTopicTitle(bankSubjects.get(i).getTopicTitle());
courseTopic.setTopicOption(bankSubjects.get(i).getTopicOption()); courseTopic.setTopicOption(bankSubjects.get(i).getTopicOption());
courseTopic.setAnswer(bankSubjects.get(i).getAnswer()); courseTopic.setAnswer(String.valueOf(bankSubjects.get(i).getAnswer()));
courseTopic.setCreateTime(new Date()); courseTopic.setCreateTime(new Date());
topics.add(courseTopic); topics.add(courseTopic);
} }
......
...@@ -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.TTrainCourseMapper"> <mapper namespace="com.zehong.system.mapper.TTrainCourseMapper">
<resultMap type="TTrainCourse" id="TTrainCourseResult"> <resultMap type="TTrainCourse" id="TTrainCourseResult">
<result property="courseId" column="course_id" /> <result property="courseId" column="course_id" />
<result property="courseName" column="course_name" /> <result property="courseName" column="course_name" />
...@@ -25,6 +25,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -25,6 +25,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="testEndTime" column="test_end_time" /> <result property="testEndTime" column="test_end_time" />
<result property="testPersons" column="test_persons" /> <result property="testPersons" column="test_persons" />
<result property="duration" column="duration" /> <result property="duration" column="duration" />
<result property="multipleChoiceScore" column="multiple_choice_score" />
<result property="singleChoiceScore" column="single_choice_score" />
<result property="judgmentScore" column="judgment_score" />
</resultMap> </resultMap>
<resultMap id="StatisticsTrainCourseResult" type="StatisticsTrainCourse"> <resultMap id="StatisticsTrainCourseResult" type="StatisticsTrainCourse">
...@@ -39,14 +42,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -39,14 +42,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</resultMap> </resultMap>
<sql id="selectTTrainCourseVo"> <sql id="selectTTrainCourseVo">
select course_id, course_name, course_type, course_conent, status,personnel_type, release_time, enclosure, video, qualified_num, topic_num, create_time, create_user, is_del, data_kind, test_start_time, test_end_time, test_persons,duration from t_train_course select multiple_choice_score,single_choice_score,judgment_score,course_id, course_name, course_type, course_conent, status,personnel_type, release_time, enclosure, video, qualified_num, topic_num, create_time, create_user, is_del, data_kind, test_start_time, test_end_time, test_persons,duration from t_train_course
</sql> </sql>
<select id="selectTTrainCourseList" parameterType="TTrainCourse" resultMap="TTrainCourseResult"> <select id="selectTTrainCourseList" parameterType="TTrainCourse" resultMap="TTrainCourseResult">
select c.*,p.plan_name from t_train_course c select c.*,p.plan_name from t_train_course c
LEFT JOIN t_train_plan p on p.plan_id = c.course_type LEFT JOIN t_train_plan p on p.plan_id = c.course_type
<where> <where>
<if test="courseName != null and courseName != ''"> and c.course_name like concat('%', #{courseName}, '%')</if> <if test="courseName != null and courseName != ''"> and c.course_name like concat('%', #{courseName}, '%')</if>
<if test="courseType != null "> and c.course_type = #{courseType}</if> <if test="courseType != null "> and c.course_type = #{courseType}</if>
<if test="courseConent != null and courseConent != ''"> and c.course_conent = #{courseConent}</if> <if test="courseConent != null and courseConent != ''"> and c.course_conent = #{courseConent}</if>
...@@ -63,7 +66,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -63,7 +66,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="testPersons != null and testPersons != ''"> and test_persons = #{testPersons}</if> <if test="testPersons != null and testPersons != ''"> and test_persons = #{testPersons}</if>
</where> </where>
</select> </select>
<select id="selectTTrainCourseById" parameterType="Long" resultMap="TTrainCourseResult"> <select id="selectTTrainCourseById" parameterType="Long" resultMap="TTrainCourseResult">
<include refid="selectTTrainCourseVo"/> <include refid="selectTTrainCourseVo"/>
where course_id = #{courseId} where course_id = #{courseId}
...@@ -90,7 +93,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -90,7 +93,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="testEndTime != null">test_end_time,</if> <if test="testEndTime != null">test_end_time,</if>
<if test="testPersons != null">test_persons,</if> <if test="testPersons != null">test_persons,</if>
<if test="duration != null">duration,</if> <if test="duration != null">duration,</if>
<if test="multipleChoiceScore != null">multiple_choice_score,</if>
<if test="singleChoiceScore != null">single_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>
...@@ -111,7 +116,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -111,7 +116,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="testEndTime != null">#{testEndTime},</if> <if test="testEndTime != null">#{testEndTime},</if>
<if test="testPersons != null">#{testPersons},</if> <if test="testPersons != null">#{testPersons},</if>
<if test="duration != null">#{duration},</if> <if test="duration != null">#{duration},</if>
<if test="multipleChoiceScore != null">#{multipleChoiceScore},</if>
<if test="singleChoiceScore != null">#{singleChoiceScore},</if>
<if test="judgmentScore != null">#{judgmentScore},</if>
</trim> </trim>
</insert> </insert>
...@@ -136,6 +143,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -136,6 +143,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="testEndTime != null">test_end_time = #{testEndTime},</if> <if test="testEndTime != null">test_end_time = #{testEndTime},</if>
<if test="testPersons != null">test_persons = #{testPersons},</if> <if test="testPersons != null">test_persons = #{testPersons},</if>
<if test="duration != null">duration = #{duration},</if> <if test="duration != null">duration = #{duration},</if>
<if test="multipleChoiceScore != null">multiple_choice_score = #{multipleChoiceScore},</if>
<if test="singleChoiceScore != null">single_choice_score = #{singleChoiceScore},</if>
<if test="judgmentScore != null">judgment_score = #{judgmentScore},</if>
</trim> </trim>
where course_id = #{courseId} where course_id = #{courseId}
</update> </update>
...@@ -145,7 +155,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -145,7 +155,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</delete> </delete>
<delete id="deleteTTrainCourseByIds" parameterType="String"> <delete id="deleteTTrainCourseByIds" parameterType="String">
delete from t_train_course where course_id in delete from t_train_course where course_id in
<foreach item="courseId" collection="array" open="(" separator="," close=")"> <foreach item="courseId" collection="array" open="(" separator="," close=")">
#{courseId} #{courseId}
</foreach> </foreach>
...@@ -198,4 +208,4 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -198,4 +208,4 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</where> </where>
GROUP BY course.course_id GROUP BY course.course_id
</select> </select>
</mapper> </mapper>
\ No newline at end of file
...@@ -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.TTrainCourseTopicMapper"> <mapper namespace="com.zehong.system.mapper.TTrainCourseTopicMapper">
<resultMap type="TTrainCourseTopic" id="TTrainCourseTopicResult"> <resultMap type="TTrainCourseTopic" id="TTrainCourseTopicResult">
<result property="topicId" column="topic_id" /> <result property="topicId" column="topic_id" />
<result property="courseId" column="course_id" /> <result property="courseId" column="course_id" />
...@@ -11,15 +11,16 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -11,15 +11,16 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="topicOption" column="topic_option" /> <result property="topicOption" column="topic_option" />
<result property="answer" column="answer" /> <result property="answer" column="answer" />
<result property="createTime" column="create_time" /> <result property="createTime" column="create_time" />
<result property="topicType" column="topic_type" />
</resultMap> </resultMap>
<sql id="selectTTrainCourseTopicVo"> <sql id="selectTTrainCourseTopicVo">
select topic_id, course_id, topic_title, topic_option, answer, create_time from t_train_course_topic select topic_id, course_id, topic_title, topic_option, answer, create_time,topic_type from t_train_course_topic
</sql> </sql>
<select id="selectTTrainCourseTopicList" parameterType="TTrainCourseTopic" resultMap="TTrainCourseTopicResult"> <select id="selectTTrainCourseTopicList" parameterType="TTrainCourseTopic" resultMap="TTrainCourseTopicResult">
<include refid="selectTTrainCourseTopicVo"/> <include refid="selectTTrainCourseTopicVo"/>
<where> <where>
<if test="courseId != null "> and course_id = #{courseId}</if> <if test="courseId != null "> and course_id = #{courseId}</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>
...@@ -27,14 +28,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -27,14 +28,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</where> </where>
</select> </select>
<select id="selectCourseTopicList" resultMap="TTrainCourseTopicResult"> <select id="selectCourseTopicList" resultMap="TTrainCourseTopicResult">
select topic_id, course_id, topic_title, topic_option, answer, create_time from t_train_course_topic select topic_id, course_id, topic_title, topic_option, answer, create_time,topic_type from t_train_course_topic
WHERE course_id = #{courseId} WHERE course_id = #{courseId}
</select> </select>
<select id="selectTTrainCourseTopicById" parameterType="Long" resultMap="TTrainCourseTopicResult"> <select id="selectTTrainCourseTopicById" parameterType="Long" resultMap="TTrainCourseTopicResult">
<include refid="selectTTrainCourseTopicVo"/> <include refid="selectTTrainCourseTopicVo"/>
where topic_id = #{topicId} where topic_id = #{topicId}
</select> </select>
<insert id="insertTTrainCourseTopic" parameterType="TTrainCourseTopic"> <insert id="insertTTrainCourseTopic" parameterType="TTrainCourseTopic">
insert into t_train_course_topic insert into t_train_course_topic
<trim prefix="(" suffix=")" suffixOverrides=","> <trim prefix="(" suffix=")" suffixOverrides=",">
...@@ -44,6 +45,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -44,6 +45,7 @@ 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="createTime != null">create_time,</if> <if test="createTime != null">create_time,</if>
<if test="topicType != null">topic_type</if>
</trim> </trim>
<trim prefix="values (" suffix=")" suffixOverrides=","> <trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="topicId != null">#{topicId},</if> <if test="topicId != null">#{topicId},</if>
...@@ -52,6 +54,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -52,6 +54,7 @@ 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="createTime != null">#{createTime},</if> <if test="createTime != null">#{createTime},</if>
<if test="topicType != null">#{topicType},</if>
</trim> </trim>
</insert> </insert>
...@@ -63,6 +66,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -63,6 +66,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="topicOption != null">topic_option = #{topicOption},</if> <if test="topicOption != null">topic_option = #{topicOption},</if>
<if test="answer != null">answer = #{answer},</if> <if test="answer != null">answer = #{answer},</if>
<if test="createTime != null">create_time = #{createTime},</if> <if test="createTime != null">create_time = #{createTime},</if>
<if test="topicType != null">topic_type= #{topicType}</if>
</trim> </trim>
where topic_id = #{topicId} where topic_id = #{topicId}
</update> </update>
...@@ -72,7 +76,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -72,7 +76,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</delete> </delete>
<delete id="deleteTTrainCourseTopicByIds" parameterType="String"> <delete id="deleteTTrainCourseTopicByIds" parameterType="String">
delete from t_train_course_topic where topic_id in delete from t_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>
...@@ -84,4 +88,4 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -84,4 +88,4 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
(#{topic.courseId},#{topic.topicTitle},#{topic.topicOption},#{topic.answer},#{topic.createTime}) (#{topic.courseId},#{topic.topicTitle},#{topic.topicOption},#{topic.answer},#{topic.createTime})
</foreach> </foreach>
</insert> </insert>
</mapper> </mapper>
\ No newline at end of file
...@@ -46,6 +46,7 @@ ...@@ -46,6 +46,7 @@
"js-cookie": "2.2.1", "js-cookie": "2.2.1",
"jsencrypt": "3.0.0-rc.1", "jsencrypt": "3.0.0-rc.1",
"nprogress": "0.2.0", "nprogress": "0.2.0",
"qrcodejs2": "^0.0.2",
"quill": "1.3.7", "quill": "1.3.7",
"screenfull": "5.0.2", "screenfull": "5.0.2",
"sortablejs": "1.10.2", "sortablejs": "1.10.2",
...@@ -54,6 +55,7 @@ ...@@ -54,6 +55,7 @@
"vue-cropper": "0.5.5", "vue-cropper": "0.5.5",
"vue-esign": "^1.1.4", "vue-esign": "^1.1.4",
"vue-print-nb": "^1.7.5", "vue-print-nb": "^1.7.5",
"vue-qr": "^4.0.9",
"vue-router": "3.4.9", "vue-router": "3.4.9",
"vue-video-player": "5.0.2", "vue-video-player": "5.0.2",
"vuedraggable": "2.24.3", "vuedraggable": "2.24.3",
......
...@@ -35,7 +35,6 @@ module.exports = { ...@@ -35,7 +35,6 @@ module.exports = {
// detail: https://cli.vuejs.org/config/#devserver-proxy // detail: https://cli.vuejs.org/config/#devserver-proxy
[process.env.VUE_APP_BASE_API]: { [process.env.VUE_APP_BASE_API]: {
target: process.env.VUE_APP_TARGET, target: process.env.VUE_APP_TARGET,
target: `http://192.168.2.21:8908/dangerManage`,
changeOrigin: true, changeOrigin: true,
pathRewrite: { pathRewrite: {
['^' + process.env.VUE_APP_BASE_API]: '' ['^' + process.env.VUE_APP_BASE_API]: ''
......
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