| | |
| | | */ |
| | | @PostMapping("/common/data/company/export") |
| | | R exportRealCompany(ExportRealCompanyExcelDTO exportRealCompanyExcelDTO); |
| | | |
| | | /** |
| | | * 社区后台实有单位管理列表 |
| | | * @param pageComMngRealAssetsDTO |
| | | * @return |
| | | */ |
| | | @PostMapping("/common/data/assets/page") |
| | | R pageQueryComMngRealAssets(@RequestBody PageComMngRealAssetsDTO pageComMngRealAssetsDTO); |
| | | |
| | | /** |
| | | * 社区后台添加修改实有单位 |
| | | * @param comMngRealAssetsVO |
| | | * @return |
| | | */ |
| | | @PostMapping("/common/data/assets/save") |
| | | R saveComMngRealAssets(@RequestBody ComMngRealAssetsVO comMngRealAssetsVO); |
| | | |
| | | /** |
| | | * 社区后台删除实有单位 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @DeleteMapping("/common/data/assets/delete") |
| | | R deleteComMngRealAssets(@RequestParam(value = "id") Long id); |
| | | |
| | | /** |
| | | * 实有单位详情 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @GetMapping("/common/data/assets/detail") |
| | | R detailComMngRealAssets(@RequestParam(value = "id") Long id); |
| | | |
| | | /** |
| | | * 批量导入实有单位 |
| | | * @param list 实有单位集合 |
| | | */ |
| | | @PostMapping("/common/data/assets/import") |
| | | R listSaveMngRealAssetsExcelVO(@RequestBody List<ComMngRealAssetsExcelVO> list,@RequestParam("communityId") Long communityId); |
| | | |
| | | /** |
| | | * 实有单位导出 |
| | | * @param exportRealAssetsExcelDTO |
| | | * @return |
| | | */ |
| | | @PostMapping("/common/data/assets/export") |
| | | R exportRealAssets(ExportRealAssetsExcelDTO exportRealAssetsExcelDTO); |
| | | } |