kongzy
2024-07-05 14821e28286d773ad5ff2c13510e39c5eb117daf
exam-admin/src/main/java/com/gkhy/exam/admin/web/ExStudentStudyController.java
@@ -4,6 +4,7 @@
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;
@@ -35,7 +36,7 @@
    })
    @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));
    }