You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.9 KiB
57 lines
1.9 KiB
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_CollegeFillOpeningReportOpinion extends TempProcess{
|
|
String graduationDesignId;
|
|
String opening_report_college_teacher_id;
|
|
Map<String,String> vMap;
|
|
|
|
static String table="graduation_design_opening_report_opinion_record";
|
|
|
|
public void fillInformation() throws Exception {
|
|
if(!check()) throw new GExcptInit("FillInformation 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("college_opinion_date",date);
|
|
Map<String, String>limits = new HashMap<>();
|
|
limits.put("id",this.getGraduationDesignId());
|
|
fillInformation.addOptions("limits",limits);
|
|
fillInformation.execute(null);
|
|
}
|
|
protected boolean check() {
|
|
if(this.getOpening_report_college_teacher_id()==null||this.getGraduationDesignId()==null)
|
|
return false;
|
|
return true;
|
|
}
|
|
public String getGraduationDesignId() {
|
|
return graduationDesignId;
|
|
}
|
|
|
|
public void setGraduationDesignId(String graduationDesignId) {
|
|
this.graduationDesignId = graduationDesignId;
|
|
}
|
|
|
|
public String getOpening_report_college_teacher_id() {
|
|
return opening_report_college_teacher_id;
|
|
}
|
|
|
|
public void setOpening_report_college_teacher_id(String opening_report_college_teacher_id) {
|
|
this.opening_report_college_teacher_id = opening_report_college_teacher_id;
|
|
}
|
|
|
|
public void setvMap(Map<String, String> vMap) {
|
|
this.vMap = vMap;
|
|
}
|
|
|
|
}
|