| | |
| | | |
| | | import com.mindskip.xzs.base.BaseApiController; |
| | | import com.mindskip.xzs.base.RestResponse; |
| | | import com.mindskip.xzs.domain.ExamPaperSubject; |
| | | import com.mindskip.xzs.domain.Subject; |
| | | import com.mindskip.xzs.service.SubjectService; |
| | | import com.mindskip.xzs.service.*; |
| | | import com.mindskip.xzs.utility.PageInfoHelper; |
| | | import com.mindskip.xzs.viewmodel.admin.education.SubjectEditRequestVM; |
| | | import com.mindskip.xzs.viewmodel.admin.education.SubjectPageRequestVM; |
| | |
| | | public class EducationController extends BaseApiController { |
| | | |
| | | private final SubjectService subjectService; |
| | | private final QuestionSubjectService questionSubjectService; |
| | | private final ExamPaperSubjectService examPaperSubjectService; |
| | | private final ExamPaperDepartmentService examPaperDepartmentService; |
| | | private final ExamPaperService examPaperService; |
| | | |
| | | @Autowired |
| | | public EducationController(SubjectService subjectService) { |
| | | public EducationController(SubjectService subjectService, QuestionSubjectService questionSubjectService, ExamPaperSubjectService examPaperSubjectService, ExamPaperDepartmentService examPaperDepartmentService, ExamPaperService examPaperService) { |
| | | this.subjectService = subjectService; |
| | | this.questionSubjectService = questionSubjectService; |
| | | this.examPaperSubjectService = examPaperSubjectService; |
| | | this.examPaperDepartmentService = examPaperDepartmentService; |
| | | this.examPaperService = examPaperService; |
| | | } |
| | | |
| | | @RequestMapping(value = "/subject/list", method = RequestMethod.POST) |
| | |
| | | Subject subject = subjectService.selectById(id); |
| | | subject.setDeleted(true); |
| | | subjectService.updateByIdFilter(subject); |
| | | questionSubjectService.removeSubjectId(id); |
| | | Integer[] ids = examPaperSubjectService.getBySubjectId(id) |
| | | .stream().map(ExamPaperSubject::getExamPaperId).toArray(Integer[]::new); |
| | | examPaperService.removeByIds(ids); |
| | | examPaperDepartmentService.removeByExamPaperIds(ids); |
| | | examPaperSubjectService.removeBySubjectId(id); |
| | | return RestResponse.ok(); |
| | | } |
| | | } |