ExamAdminService.java 941 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*
  2. * *************************************************
  3. * Copyright (c) 2018 QMTH. All Rights Reserved.
  4. * Created by Deason on 2018-07-31 17:29:12.
  5. * *************************************************
  6. */
  7. package cn.com.qmth.examcloud.app.service;
  8. import cn.com.qmth.examcloud.app.model.Result;
  9. /**
  10. * 考务业务服务接口
  11. *
  12. * @author: fengdesheng
  13. * @since: 2018/7/31
  14. */
  15. public interface ExamAdminService {
  16. /**
  17. * 获取某考生的“考试批次”列表
  18. *
  19. * @param key
  20. * @param token
  21. * @param studentId
  22. * @return
  23. * @throws Exception
  24. */
  25. Result getPracticeExamList(String key, String token, String studentId) throws Exception;
  26. /**
  27. * 获取当前练习的考试基本信息
  28. *
  29. * @param key
  30. * @param token
  31. * @param examId
  32. * @return
  33. * @throws Exception
  34. */
  35. Result getExamInfo(String key, String token, Long examId) throws Exception;
  36. }