Accept Merge Request #143: (hyc -> master)
Merge Request: 【修改】新增ps考点读取 Created By: @华允传 Accepted By: @华允传 URL: https://g-iswv8783.coding.net/p/education/d/pengchen-exam-java/git/merge/143?initial=true
This commit is contained in:
@@ -102,7 +102,7 @@ public interface ExamQuestionMapper extends BaseMapperX<ExamQuestion>
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public String deleteExamQuestionByQuIds(@Param("ids") String[] ids);
|
||||
public void deleteExamQuestionByQuIds(@Param("ids") String[] ids);
|
||||
|
||||
/**
|
||||
* 批量查找试题
|
||||
|
@@ -262,14 +262,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<delete id="deleteExamQuestionByQuId" parameterType="String">
|
||||
UPDATE exam_question set deleted ='2' where qu_id = #{quId}
|
||||
</delete>
|
||||
<delete id="deleteExamQuestionByQuIds">
|
||||
<update id="deleteExamQuestionByQuIds">
|
||||
UPDATE exam_question
|
||||
SET deleted = '2'
|
||||
WHERE qu_id IN
|
||||
<foreach collection="ids" item="id" open="(" separator="," close=")">
|
||||
#{id}
|
||||
</foreach>
|
||||
</delete>
|
||||
</update>
|
||||
|
||||
|
||||
<update id="setQuestionAuditByids">
|
||||
|
Reference in New Issue
Block a user