# Conflicts: # src/core/operation/Search.jsonwlf
parent
0e8a2a1ebb
commit
3cbe7c42d8
File diff suppressed because it is too large
Load Diff
@ -1,4 +1,22 @@
|
||||
package core.process;
|
||||
|
||||
public class C_StudentSelectTeacher {
|
||||
import core.operation.Select;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
public class C_StudentSelectTeacher extends Process {
|
||||
public void select(String studentID,String teacherID)throws Exception{
|
||||
Select select=new Select();
|
||||
select.setOptions(new HashMap<>());
|
||||
String student_id=studentID;
|
||||
select.addOptions("student_id",student_id);
|
||||
String teacher_id=teacherID;
|
||||
select.addOptions("teacher_id",teacher_id);
|
||||
Map<String,Object> options=select.execute(null);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
Loading…
Reference in new issue