| | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.springblade.modules.exam.entity.ExamScore; |
| | | import org.springblade.modules.exam.excel.ExamScoreExcel; |
| | | import org.springblade.modules.exam.excel.ExportExamScoreExcel; |
| | | import org.springblade.modules.exam.vo.ExamScoreVO; |
| | | import org.springblade.modules.exam.vo.UpdateParamVo; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | |
| | | * @return |
| | | */ |
| | | IPage<ExamScoreVO> scorePage(IPage page,String deptid,String jurisdiction); |
| | | |
| | | /** |
| | | * 考试成绩及状态修改 |
| | | * @param updateParamVo |
| | | */ |
| | | boolean updateExamScore(UpdateParamVo updateParamVo); |
| | | |
| | | /** |
| | | * 考试重置 |
| | | * @param updateParamVo |
| | | * @return |
| | | */ |
| | | boolean refreshTrainExamInfo(UpdateParamVo updateParamVo); |
| | | |
| | | /** |
| | | * 按条件查询成绩数据 |
| | | * @param examScoreVO |
| | | * @return |
| | | */ |
| | | List<ExportExamScoreExcel> exportExamScoreList(ExamScoreVO examScoreVO); |
| | | |
| | | |
| | | /** |
| | | * 考试状态修改,考试成绩恢复 |
| | | * @param |
| | | * @return |
| | | */ |
| | | Boolean refreshTrainExamScore(); |
| | | } |