沈斌
2018-05-07 63d045ea6c04e4e3ce1807273718a72be1491f62
test
1 files modified
10 ■■■■ changed files
src/main/java/com/moral/controller/MobileController.java 10 ●●●● patch | view | raw | blame | history
src/main/java/com/moral/controller/MobileController.java
@@ -120,11 +120,8 @@
     * @param request the area name
     * @return the monitor points by area name
     */
    @PostMapping("getMpointsByAreaName")
    @GetMapping("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);
@@ -136,11 +133,8 @@
     * @param request the area name
     * @return the organizations by area name
     */
    @PostMapping("getOrgsByAreaName")
    @GetMapping("getOrgsByAreaName")
    public AppData<List<Organization>> getOrganizationsByAreaName(HttpServletRequest request) {
        System.out.println("++++++++++++++++++++++++++++++++22222");
        System.out.println(request.getParameter("areaName"));
        Map<String, Object> parameters = getParametersStartingWith(request, null);
        List<Organization> organizations = organizationService.getOrganizationsByAreaName(parameters);
        return new AppData<List<Organization>>(organizations);