Przeglądaj źródła

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

wangliang 3 miesięcy temu
rodzic
commit
9c53419d2c

+ 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);
 }