|
@@ -15,17 +15,17 @@ import cn.com.qmth.am.enums.DataStatus;
|
|
|
/**
|
|
|
* 类注释
|
|
|
*/
|
|
|
-public interface StudentScoreService extends IService<StudentScoreEntity> {
|
|
|
+public interface StudentScoreService extends IService<StudentScoreEntity> {
|
|
|
|
|
|
void importScore();
|
|
|
|
|
|
List<StudentScoreEntity> getByStudentId(Long id);
|
|
|
|
|
|
- List<StudentScoreEntity> add(StudentEntity student, Map<Long,QuestionEntity> quetions);
|
|
|
+ List<StudentScoreEntity> add(StudentEntity student, Map<Long, QuestionEntity> quetions);
|
|
|
|
|
|
- void updateAnswerErr(Long id,String string);
|
|
|
+ void updateAnswerErr(Long id, String string);
|
|
|
|
|
|
- void createSlice(StudentScoreEntity score, QuestionEntity q,Map<Integer,AnswerImageDto> answerImages);
|
|
|
+ void createSlice(StudentScoreEntity score, QuestionEntity q, Map<Integer, AnswerImageDto> answerImages);
|
|
|
|
|
|
StudentScoreImageDto pollStudentScoreImage();
|
|
|
|
|
@@ -38,11 +38,12 @@ public interface StudentScoreService extends IService<StudentScoreEntity> {
|
|
|
List<StudentScoreEntity> findAllToAiMarking();
|
|
|
|
|
|
int countBy(Long examId, DataStatus success);
|
|
|
-
|
|
|
+
|
|
|
int countOcrBy(Long examId, DataStatus success);
|
|
|
|
|
|
void removeBy(Long examId, String subjectCode);
|
|
|
|
|
|
- List<StudentScoreEntity> findBy(Long examId, String subjectCode, Integer mainNumber, String subNumber,Boolean exZero);
|
|
|
+ List<StudentScoreEntity> findBy(Long examId, String subjectCode, Integer mainNumber, String subNumber,
|
|
|
+ Boolean exZero, Integer count);
|
|
|
|
|
|
}
|