| | |
| | | return instance;
|
| | | }
|
| | |
|
| | | public void queryVisitor(String pageNum, String name, final boolean isClear) {
|
| | | public void queryVisitor() {
|
| | |
|
| | | RequestParams params = new RequestParams(AppApi.BASEURL+AppApi.DICTIONARY_TYPE_LIST);
|
| | | params.addBodyParameter(IntervieweeQueryCondition.FieldNames.companyId, "1");
|
| | | params.addBodyParameter(IntervieweeQueryCondition.FieldNames.name, name);
|
| | | x.http().post(params, new BaseCommonCallBack() {
|
| | | public void success() {
|
| | | VisitorRegisterFragment.getInstance().listChanged(getList(IntervieweeQueryItem.class), isClear);
|
| | | }
|
| | | });
|
| | |
|
| | |
|
| | |
|
| | | }
|