|  |  |  | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @PostMapping("getMpointsByAreaName") | 
|---|
|  |  |  | public AppData<List<MonitorPoint>> getMonitorPointsByAreaName(HttpServletRequest request) { | 
|---|
|  |  |  | System.out.println("++++++++++++++++++++++++++++++++11111"); | 
|---|
|  |  |  | System.out.println(request.getParameter("areaName")); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | Map<String, Object> parameters = getParametersStartingWith(request, null); | 
|---|
|  |  |  | List<MonitorPoint> monitorPoints = monitorPointService.getMonitorPointsByAreaName(parameters); | 
|---|
|  |  |  | return new AppData<List<MonitorPoint>>(monitorPoints); | 
|---|
|  |  |  | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @PostMapping("getOrgsByAreaName") | 
|---|
|  |  |  | public AppData<List<Organization>> getOrganizationsByAreaName(HttpServletRequest request) { | 
|---|
|  |  |  | System.out.println("++++++++++++++++++++++++++++++++"); | 
|---|
|  |  |  | System.out.println("++++++++++++++++++++++++++++++++22222"); | 
|---|
|  |  |  | System.out.println(request.getParameter("areaName")); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | Map<String, Object> parameters = getParametersStartingWith(request, null); | 
|---|