|
|
|
@ -55,6 +55,38 @@ public class ProcessManagement {
|
|
|
|
|
return status;
|
|
|
|
|
}
|
|
|
|
|
public static Process getProcess(String process){
|
|
|
|
|
return null;
|
|
|
|
|
switch (process) {
|
|
|
|
|
case "teacher_choose_student_status":
|
|
|
|
|
return new C_TeacherSelectStudent();
|
|
|
|
|
case "student_choose_teacher_status":
|
|
|
|
|
return new C_StudentSelectTeacher();
|
|
|
|
|
case"student_fill_graduation_design_information_status":
|
|
|
|
|
return new C_StudentFillGraduationDesignInformation();
|
|
|
|
|
case"opening_report_status":
|
|
|
|
|
return new C_StudentUploadOpeningReport();
|
|
|
|
|
case"opening_report_mentor_opinion_status":
|
|
|
|
|
return new C_MentorFillOpeningReportOpinion();
|
|
|
|
|
case"opening_report_teacher_team_opinion_status":
|
|
|
|
|
return new C_TeacherTeamFillOpeningReportOpinion();
|
|
|
|
|
case"opening_report_college_opinion_status":
|
|
|
|
|
return new C_CollegeFillOpeningReportOpinion();
|
|
|
|
|
case"opening_report_secretary_record_status":
|
|
|
|
|
return new C_SecretaryFillOpeningReportRecord();
|
|
|
|
|
case"finished_product_status":
|
|
|
|
|
return new C_StudentUploadFinishedProduct();
|
|
|
|
|
case"finished_product_mentor_score_status":
|
|
|
|
|
return new C_MentorFillReview();
|
|
|
|
|
case"finished_product_reviewer_score_status":
|
|
|
|
|
return new C_ReviewerFillReview();
|
|
|
|
|
case"reply_ secretary_record_status":
|
|
|
|
|
return new C_SecretaryFillReplyRecord();
|
|
|
|
|
case"reply_ teacher_team_score_status":
|
|
|
|
|
return new C_TeacherFillTeamFillScoreOpinion();
|
|
|
|
|
case"reply_college_score_status":
|
|
|
|
|
return new C_CollegeFillScoreOpinion();
|
|
|
|
|
case"reply_school_score_status":
|
|
|
|
|
return new C_SchoolFillScoreOpinion();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|