|
|
|
@ -1,24 +1,29 @@
|
|
|
|
|
package core.process;
|
|
|
|
|
|
|
|
|
|
import core.operation.Search;
|
|
|
|
|
import error.GExcptInit;
|
|
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
import java.util.HashMap;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
|
|
public class C_TeacherSearchStudent {
|
|
|
|
|
Map<String,String> StudentInfo=new HashMap<String,String>();
|
|
|
|
|
public Map<String,String> search(String studentID) throws Exception{
|
|
|
|
|
public class C_TeacherSearchStudent extends TempProcess {
|
|
|
|
|
String studentId;
|
|
|
|
|
|
|
|
|
|
static String table="student";
|
|
|
|
|
|
|
|
|
|
Map<String,String> StudentInfo=new HashMap<String, String>();
|
|
|
|
|
public Map<String,String> search() throws Exception{
|
|
|
|
|
if(!check()) throw new GExcptInit("studentId Attrs init error!");
|
|
|
|
|
Search search = new Search() ;
|
|
|
|
|
search.setOptions(new HashMap<>());
|
|
|
|
|
String table = "student";
|
|
|
|
|
search.addOptions("table",table);
|
|
|
|
|
List<String> fields = new ArrayList<>();
|
|
|
|
|
fields.add("*");
|
|
|
|
|
search.addOptions("field",fields);
|
|
|
|
|
Map<String,String> limits = new HashMap<>();
|
|
|
|
|
limits.put("id",studentID);
|
|
|
|
|
limits.put("id",this.getStudentId());
|
|
|
|
|
search.addOptions("limits",limits);
|
|
|
|
|
search.addOptions("start",0);
|
|
|
|
|
search.addOptions("end",1);
|
|
|
|
@ -27,6 +32,20 @@ public class C_TeacherSearchStudent {
|
|
|
|
|
String[] s = result.get(0);
|
|
|
|
|
StudentInfo.put("id",s[0]);
|
|
|
|
|
StudentInfo.put("name",s[2]);
|
|
|
|
|
StudentInfo.put("e_mail_location",s[3]);
|
|
|
|
|
StudentInfo.put("phone_number",s[4]);
|
|
|
|
|
return StudentInfo;
|
|
|
|
|
}
|
|
|
|
|
protected boolean check() {
|
|
|
|
|
if(this.getStudentId()==null)
|
|
|
|
|
return false;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
public String getStudentId(){
|
|
|
|
|
return studentId;
|
|
|
|
|
}
|
|
|
|
|
public void setStudentId(String studentId){
|
|
|
|
|
this.studentId=studentId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|