| | |
| | | import com.gkhy.exam.common.annotation.Log; |
| | | import com.gkhy.exam.common.annotation.RepeatSubmit; |
| | | import com.gkhy.exam.common.api.CommonResult; |
| | | import com.gkhy.exam.common.constant.UserConstant; |
| | | import com.gkhy.exam.common.enums.BusinessType; |
| | | import com.gkhy.exam.system.service.ExStudentStudyService; |
| | | import io.swagger.annotations.Api; |
| | |
| | | }) |
| | | @GetMapping("/getStudentStudy") |
| | | public CommonResult getStudentStudy(@RequestParam(required = true) Long phaseId, @RequestParam(required = true)Long studentId){ |
| | | return CommonResult.success(studentStudyService.selectStudyByPhaseAndStundentId(phaseId,studentId)); |
| | | return CommonResult.success(studentStudyService.selectStudyByPhaseAndStundentId(phaseId,studentId, UserConstant.ENABLE)); |
| | | } |
| | | |
| | | |