| | |
| | | /** |
| | | * 模板 |
| | | */ |
| | | @GetMapping("/model") |
| | | @PostMapping("/model") |
| | | public void getModel(HttpServletResponse response){ |
| | | ZHonor zHonor = new ZHonor(); |
| | | List<ZHonor> emptyList = Collections.singletonList(zHonor); |
| | |
| | | */ |
| | | // @PreAuthorize("@ss.hasPermi('system:property:export')") |
| | | @Log(title = "证件、荣誉、资质记录", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export/{ids}") |
| | | public void export(HttpServletResponse response,@PathVariable Long[] ids) |
| | | @PostMapping(value = {"/export/{ids}","/export"}) |
| | | public void export(HttpServletResponse response,@PathVariable(required = false) Long[] ids) |
| | | { |
| | | List<ZHonor> list = zHonorService.selectByIds(ids); |
| | | log.info("导出记录为:{}",list); |