|
@@ -159,7 +159,7 @@ public class SbSearchServiceImpl implements SbSearchService {
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public JSONObject landMyAttendsData(Integer planType, Integer current, Integer size, String divisionCode) {
|
|
|
+ public WebResult landMyAttendsData(Integer planType, Integer current, Integer size, String divisionCode) {
|
|
|
List<TusexzqhDTO> villageList = tuseXzqhMapper.getAllVillage();
|
|
|
|
|
|
int total = 400;
|
|
@@ -184,7 +184,7 @@ public class SbSearchServiceImpl implements SbSearchService {
|
|
|
object.put("solId", "1108335276203401216");
|
|
|
object.put("createTime", "2023-10-13 14:40:25");
|
|
|
object.put("subject", "xxxxx国土空间总体规划");
|
|
|
- object.put("divisionCode",villageList.get(id).getUse_id());
|
|
|
+ object.put("divisionCode", villageList.get(id).getUse_id());
|
|
|
object.put("id", id);
|
|
|
object.put("status", "RUNNING");
|
|
|
object.put("instId", "1162399447005093888" + i);
|
|
@@ -196,15 +196,7 @@ public class SbSearchServiceImpl implements SbSearchService {
|
|
|
map.put("size", size);
|
|
|
map.put("current", current);
|
|
|
map.put("pages", total / size);
|
|
|
-
|
|
|
- Map<String, Object> mapRet = new HashMap<>();
|
|
|
- mapRet.put("code", 200);
|
|
|
- mapRet.put("success", true);
|
|
|
- mapRet.put("data", map);
|
|
|
- mapRet.put("msg", "操作成功");
|
|
|
-
|
|
|
- JSONObject jsonObject = JSONObject.parseObject(JSON.toJSONString(mapRet));
|
|
|
- return jsonObject;
|
|
|
+ return WebResult.success("查询成功!", map);
|
|
|
}
|
|
|
|
|
|
@Override
|