|
@@ -29,6 +29,7 @@ import org.springframework.web.servlet.mvc.support.RedirectAttributes;
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
+import javax.servlet.http.HttpServletResponse;
|
|
|
import java.text.ParseException;
|
|
|
import java.text.SimpleDateFormat;
|
|
|
import java.util.*;
|
|
@@ -165,7 +166,8 @@ public class IndexController extends BaseController {
|
|
|
*/
|
|
|
@RequestMapping(value = "/alarmRecordList", method = RequestMethod.GET)
|
|
|
@ResponseBody
|
|
|
- public String alarmRecordList() {
|
|
|
+ public String alarmRecordList(ModelMap model , RedirectAttributes redirectAttributes) {
|
|
|
+// HttpServletResponse response = new HttpServletResponse;
|
|
|
List<AlarmRecord> alarmRecordList = new ArrayList<>();
|
|
|
Admin admin = adminService.getCurrent();
|
|
|
List<Filter> fs = new ArrayList<>();
|