地图新增信息

liujun-2024-05-23-接口漏洞修复
liujun 2024-04-23 18:53:02 +08:00
parent b5acd5f91d
commit 0a95da31c7
1 changed files with 5 additions and 2 deletions

View File

@ -922,7 +922,7 @@ public class MapController extends BaseController {
}
}
@RequestMapping(value = "/getAlarmList")
@RequestMapping(value = "/getAllDwMessage")
@ResponseBody
public Object getAlarmList() throws Exception {
Map<String, Object> map = new HashMap<String, Object>();
@ -934,7 +934,10 @@ public class MapController extends BaseController {
alarmGet.getPage().setCurrent("1");
alarmGet.getPage().setSize("20");
alarmGet.setCorpId(pd.getString("corpId"));
return dwService.getAlarmList(alarmGet);
map.put("result", "success");
map.put("alarmList",dwService.getAlarmList(alarmGet));
map.put("orthermessage",dwService.getAllMessage());
return map;
}else {
PageData value = usersService.getPersonByCardNo(pd);
map.put("result", "success");