@@ -496,6 +496,5 @@ public interface TOeExamRecordMapper extends BaseMapper<TOeExamRecord> {
* @param identityList
* @return
*/
- public List<Long> examRecordDetailListQuery(@Param("examId") Long examId, @Param("courseCodeList") List<String> courseCodeList, @Param("identityList") List<String> identityList);
-
+ public List<String> examRecordDetailListQuery(@Param("examId") Long examId, @Param("courseCodeList") List<String> courseCodeList, @Param("identityList") List<String> identityList);
}
@@ -533,7 +533,7 @@ public interface TOeExamRecordService extends IService<TOeExamRecord> {
- public List<Long> examRecordDetailQuery(Long examId, List<String> courseCodeList, List<String> identityList);
+ public List<String> examRecordDetailQuery(Long examId, List<String> courseCodeList, List<String> identityList);
/**
* 查看试卷
@@ -1424,7 +1424,7 @@ public class TOeExamRecordServiceImpl extends ServiceImpl<TOeExamRecordMapper, T
@Override
- public List<Long> examRecordDetailQuery(Long examId, List<String> courseCodeList, List<String> identityList) {
+ public List<String> examRecordDetailQuery(Long examId, List<String> courseCodeList, List<String> identityList) {
return tOeExamRecordMapper.examRecordDetailListQuery(examId, courseCodeList, identityList);
@@ -1645,7 +1645,7 @@
order by tees.id
</select>
- <select id="examRecordDetailListQuery" resultType="java.lang.Long">
+ <select id="examRecordDetailListQuery" resultType="java.lang.String">
select
toer.id as examRecordId
from t_oe_exam_record toer