StudentService.java 846 B

1234567891011121314151617181920212223242526272829303132
  1. package cn.com.qmth.am.service;
  2. import java.io.InputStream;
  3. import java.util.Map;
  4. import cn.com.qmth.am.bean.AnswerImageDto;
  5. import cn.com.qmth.am.bean.ImportResult;
  6. import cn.com.qmth.am.entity.QuestionEntity;
  7. import cn.com.qmth.am.entity.StudentScoreEntity;
  8. /**
  9. * 类注释
  10. */
  11. public interface StudentService {
  12. void importStudent();
  13. ImportResult disposeFile(InputStream inputStream);
  14. void buildImage(StudentScoreEntity score, Map<Long, QuestionEntity> quetions);
  15. // List<StudentScoreEntity> getOrCreateScores(StudentEntity student,
  16. // Map<Long, QuestionEntity> quetions);
  17. void createSlice(StudentScoreEntity score, Map<Long, QuestionEntity> quetions,
  18. Map<Integer, AnswerImageDto> answerImages);
  19. void reset(Long examId, String subjectCode);
  20. void clear(Long examId, String subjectCode);
  21. }