소스 검색

线下做的答题卡,下载轨迹图片后,希望在评卷区的右上角显示每个分组的得分

wangliang 3 달 전
부모
커밋
9c53419d2c
1개의 변경된 파일7개의 추가작업 그리고 1개의 파일을 삭제
  1. 7 1
      teachcloud-mark/src/main/java/com/qmth/teachcloud/mark/mapper/MarkSubjectiveScoreMapper.java

+ 7 - 1
teachcloud-mark/src/main/java/com/qmth/teachcloud/mark/mapper/MarkSubjectiveScoreMapper.java

@@ -18,7 +18,13 @@ import java.util.List;
  */
 public interface MarkSubjectiveScoreMapper extends MppBaseMapper<MarkSubjectiveScore> {
 
-	List<QuestionVo> getSubjectiveVo(@Param("studentIds")List<Long> studentIds);
+    List<QuestionVo> getSubjectiveVo(@Param("studentIds") List<Long> studentIds);
 
+    /**
+     * 根据学生id查找评卷区
+     *
+     * @param studentId
+     * @return
+     */
     List<MarkAreaDto> findMarkArea(@Param("studentId") Long studentId);
 }