|
|
@ -105,6 +105,13 @@ public class TopicController { |
|
|
|
ExcelUtils.exportExcelToTarget(response, null, list, TopicExcel.class); |
|
|
|
} |
|
|
|
|
|
|
|
@GetMapping("policeexport") |
|
|
|
@DataFilter(tableAlias = "temp", deptId = "grid_id", prefix = "AND", isPendingCreator = false) |
|
|
|
public void exportPolice(@RequestParam Map<String, Object> params, HttpServletResponse response) throws Exception { |
|
|
|
List<TopicDTO> list = topicService.listPolice(params); |
|
|
|
ExcelUtils.exportExcelToTarget(response, null, list, TopicExcel.class); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* 关闭话题 |
|
|
|
* |
|
|
|