Commit 71bc0277 authored by lv.jiahui's avatar lv.jiahui

111

parent beba9c85
......@@ -90,7 +90,7 @@ public class GridManController {
Home home = homeService.getById(id);
return Result.success(home);
}
@GetMapping("/getHome")
@GetMapping("/getAllHome")
public Result<Map<String, Object>> getHomeList(@RequestHeader("X-Token") String token,
@RequestParam("pageNo") Long pageNo,
@RequestParam("pageSize") Long pageSize) {
......@@ -168,6 +168,7 @@ public class GridManController {
return Result.success(userLoad);
}
//网格员查询用户信息
@GetMapping("getAllUser")
public Result<Map<String, Object>> getUserList(@RequestHeader("X-Token") String token,
@RequestParam("pageNo") Long pageNo,
@RequestParam("pageSize") Long pageSize) {
......@@ -241,6 +242,7 @@ public class GridManController {
return Result.success(building);
}
//网格员查询建筑物信息
@GetMapping("getAllBuilding")
public Result<Map<String, Object>> getBuildingList(@RequestHeader("X-Token") String token,
@RequestParam("pageNo") Long pageNo,
@RequestParam("pageSize") Long pageSize) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment