| | |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | |
| | | } |
| | | |
| | | /** |
| | | * 小程序 |
| | | * web端导出 |
| | | * @param map |
| | | * @return |
| | | */ |
| | | @PostMapping(value = "selectNoPageList") |
| | | BasicResult selectNoPageList(@RequestBody Map<String,Object> map){ |
| | | return hiddenDangerService.selectNoPageList(map); |
| | | @PostMapping(value = "export") |
| | | void export(@RequestBody Map<String,Object> map, HttpServletResponse response){ |
| | | hiddenDangerService.export(map, response); |
| | | } |
| | | |
| | | /** |