|
@@ -66,7 +66,6 @@ public class SbSearchServiceImpl implements SbSearchService {
|
|
|
return getRequestFileData(reuploadThirdpartyReviseURI, jsonObject);
|
|
|
}
|
|
|
|
|
|
-
|
|
|
@Override
|
|
|
public JSONObject getLandGetRevisePageData(Integer planType, Integer current, Integer size, String divisionCode, String subject) {
|
|
|
JSONObject jsonObject = new JSONObject();
|
|
@@ -86,14 +85,14 @@ public class SbSearchServiceImpl implements SbSearchService {
|
|
|
JSONObject jsonObject = new JSONObject();
|
|
|
jsonObject.put("ghlx", getPlanType(planType));
|
|
|
// jsonObject.put("planType", planType);
|
|
|
-// jsonObject.put("current", current);
|
|
|
-// jsonObject.put("size", size);
|
|
|
-// if (StringUtils.isNotEmpty(subject)) {
|
|
|
-// jsonObject.put("subject", subject);
|
|
|
-// }
|
|
|
-// if (StringUtils.isNotEmpty(divisionCode)) {
|
|
|
-// jsonObject.put("divisionCode", divisionCode);
|
|
|
-// }
|
|
|
+ jsonObject.put("current", current);
|
|
|
+ jsonObject.put("size", size);
|
|
|
+ if (StringUtils.isNotEmpty(subject)) {
|
|
|
+ jsonObject.put("subject", subject);
|
|
|
+ }
|
|
|
+ if (StringUtils.isNotEmpty(divisionCode)) {
|
|
|
+ jsonObject.put("divisionCode", divisionCode);
|
|
|
+ }
|
|
|
return getRequestData(landMyAttendsDataURI, jsonObject);
|
|
|
}
|
|
|
|
|
@@ -102,14 +101,14 @@ public class SbSearchServiceImpl implements SbSearchService {
|
|
|
JSONObject jsonObject = new JSONObject();
|
|
|
jsonObject.put("ghlx", getPlanType(planType));
|
|
|
// jsonObject.put("planType", planType);
|
|
|
-// jsonObject.put("current", current);
|
|
|
-// jsonObject.put("size", size);
|
|
|
-// if (StringUtils.isNotEmpty(subject)) {
|
|
|
-// jsonObject.put("title", subject);
|
|
|
-// }
|
|
|
-// if (StringUtils.isNotEmpty(divisionCode)) {
|
|
|
-// jsonObject.put("divisionCode", divisionCode);
|
|
|
-// }
|
|
|
+ jsonObject.put("current", current);
|
|
|
+ jsonObject.put("size", size);
|
|
|
+ if (StringUtils.isNotEmpty(subject)) {
|
|
|
+ jsonObject.put("title", subject);
|
|
|
+ }
|
|
|
+ if (StringUtils.isNotEmpty(divisionCode)) {
|
|
|
+ jsonObject.put("divisionCode", divisionCode);
|
|
|
+ }
|
|
|
return getRequestData(landGetAllTasksURI, jsonObject);
|
|
|
}
|
|
|
|