| | |
| | | // @PreAuthorize("@ss.hasPermi('system:property:export')") |
| | | @Log(title = "家庭资产记录", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response) |
| | | public void export(HttpServletResponse response,@RequestBody ZfProperty zfProperty) |
| | | { |
| | | List<ZfProperty> list = zfPropertyService.list(); |
| | | List<ZfProperty> list = zfPropertyService.selectByCondition(zfProperty); |
| | | ExcelUtil<ZfProperty> util = new ExcelUtil<ZfProperty>(ZfProperty.class); |
| | | util.exportExcel(response, list, "家庭资产记录数据"); |
| | | } |