# Conflicts: # src/core/process/C_StudentUploadOpeningReport.javawlf
parent
b3317a2850
commit
5716a978e8
@ -0,0 +1,68 @@
|
|||||||
|
package core.process;
|
||||||
|
|
||||||
|
import core.operation.FillInformation;
|
||||||
|
import error.GExcptInit;
|
||||||
|
|
||||||
|
import java.text.SimpleDateFormat;
|
||||||
|
import java.util.Date;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
public class C_ReviewerFillReview extends TempProcess {
|
||||||
|
public String teacherID;
|
||||||
|
public String teacher_opinion;
|
||||||
|
public Map<String,String> vMap;
|
||||||
|
|
||||||
|
static String table="graduation_design_finished_product_reviewer_score";
|
||||||
|
public String getTeacher_opinion() {
|
||||||
|
return teacher_opinion;
|
||||||
|
}
|
||||||
|
public void setTeacher_opinion(String teacher_opinion) {
|
||||||
|
this.teacher_opinion = teacher_opinion;
|
||||||
|
}
|
||||||
|
public String getTeacherID() {
|
||||||
|
return teacherID;
|
||||||
|
}
|
||||||
|
public void setTeacherID(String teacherID) {
|
||||||
|
this.teacherID = teacherID;
|
||||||
|
}
|
||||||
|
public Map<String, String> getvMap() {
|
||||||
|
return vMap;
|
||||||
|
}
|
||||||
|
public void setvMap(Map<String, String> vMap) {
|
||||||
|
this.vMap = vMap;
|
||||||
|
}
|
||||||
|
public void TeacherTeamFillOpeningReportOpinion() throws Exception{
|
||||||
|
if(!check()) throw new GExcptInit("ReviewerFillReview Attrs init error!");
|
||||||
|
FillInformation fillInformation=new FillInformation();
|
||||||
|
fillInformation.setOptions(new HashMap<>());
|
||||||
|
fillInformation.addOptions("table",table);
|
||||||
|
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-ddHH:mm:ss");
|
||||||
|
String date=df.format(new Date());
|
||||||
|
vMap.put("reviewer_score_date",date);
|
||||||
|
Map<String, String>limits = new HashMap<>();
|
||||||
|
limits.put("id",this.getTeacherID());
|
||||||
|
fillInformation.addOptions("limits",limits);
|
||||||
|
fillInformation.execute(null);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected boolean check() {
|
||||||
|
if(this.getTeacherID().equals(null)||this.getTeacher_opinion().equals(null)||this.getvMap().equals(null))
|
||||||
|
return false;
|
||||||
|
else
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -0,0 +1,58 @@
|
|||||||
|
package core.process;
|
||||||
|
|
||||||
|
import core.operation.FillInformation;
|
||||||
|
import error.GExcptInit;
|
||||||
|
|
||||||
|
import java.text.SimpleDateFormat;
|
||||||
|
import java.util.Date;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
public class C_TeacherTeamFillOpeningReportOpinion extends TempProcess {
|
||||||
|
public String teacherID;
|
||||||
|
public String teacher_opinion;
|
||||||
|
public Map<String,String> vMap;
|
||||||
|
|
||||||
|
static String table="graduation_design_opening_report_opinion_record";
|
||||||
|
public void TeacherTeamFillOpeningReportOpinion() throws Exception{
|
||||||
|
if(!check()) throw new GExcptInit("TeacherTeamFillOpeningReportOpinion Attrs init error!");
|
||||||
|
FillInformation fillInformation=new FillInformation();
|
||||||
|
fillInformation.setOptions(new HashMap<>());
|
||||||
|
fillInformation.addOptions("table",table);
|
||||||
|
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-ddHH:mm:ss");
|
||||||
|
String date=df.format(new Date());
|
||||||
|
vMap.put("report_teacher_team_opinion_date",date);
|
||||||
|
Map<String, String>limits = new HashMap<>();
|
||||||
|
limits.put("id",this.getTeacherID());
|
||||||
|
fillInformation.addOptions("limits",limits);
|
||||||
|
fillInformation.execute(null);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public Map<String, String> getvMap() {
|
||||||
|
return vMap;
|
||||||
|
}
|
||||||
|
public void setvMap(Map<String, String> vMap) {
|
||||||
|
this.vMap = vMap;
|
||||||
|
}
|
||||||
|
public String getTeacherID() {
|
||||||
|
return teacherID;
|
||||||
|
}
|
||||||
|
public void setTeacherID(String teacherID) {
|
||||||
|
this.teacherID = teacherID;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getTeacher_opinion() {
|
||||||
|
return teacher_opinion;
|
||||||
|
}
|
||||||
|
public void setTeacher_opinion(String teacher_opinion) {
|
||||||
|
this.teacher_opinion = teacher_opinion;
|
||||||
|
}
|
||||||
|
@Override
|
||||||
|
protected boolean check() {
|
||||||
|
if(this.getTeacherID().equals(null)||this.getTeacher_opinion().equals(null)||this.getvMap().equals(null))
|
||||||
|
return false;
|
||||||
|
else
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue