ExamSubjectController.java 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. package com.keao.edu.user.controller;
  2. import com.keao.edu.common.controller.BaseController;
  3. import com.keao.edu.common.entity.HttpResponseResult;
  4. import com.keao.edu.common.tenant.TenantContextHolder;
  5. import com.keao.edu.user.dto.ExamSubjectDto;
  6. import com.keao.edu.user.entity.ExamSong;
  7. import com.keao.edu.user.entity.Subject;
  8. import com.keao.edu.user.service.ExamSubjectService;
  9. import io.swagger.annotations.Api;
  10. import io.swagger.annotations.ApiImplicitParam;
  11. import io.swagger.annotations.ApiOperation;
  12. import org.apache.ibatis.annotations.Param;
  13. import org.springframework.beans.factory.annotation.Autowired;
  14. import org.springframework.web.bind.annotation.*;
  15. import java.util.List;
  16. @RestController
  17. @RequestMapping("examSubject")
  18. @Api(tags = "考级内容服务")
  19. public class ExamSubjectController extends BaseController {
  20. @Autowired
  21. private ExamSubjectService examSubjectService;
  22. @ApiOperation("获取考试项目专业")
  23. @ApiImplicitParam(name = "ExamId", value = "考试项目id", required = true, dataType = "Integer")
  24. @GetMapping(value = "/getExamSubjects")
  25. public HttpResponseResult<List<ExamSubjectDto>> getExamSubjects(Integer examId) {
  26. return succeed(examSubjectService.getExamSubjects(examId));
  27. }
  28. @ApiOperation("获取与考级项目相关的专业")
  29. @GetMapping(value = "/getUnRelatedWithExamSubjects")
  30. public HttpResponseResult<List<Subject>> getUnRelatedWithExamSubjects(Integer examId){
  31. return succeed(examSubjectService.getUnRelatedWithExamSubjects(Integer.valueOf(TenantContextHolder.getTenantId()), examId));
  32. }
  33. }