|
|
@ -101,12 +101,22 @@ public class IcCommunitySelfOrganizationController { |
|
|
|
ExcelUtils.exportExcelToTarget(response, null, list, IcCommunitySelfOrganizationExcel.class); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @Description 导出 社区自组织查询列表 |
|
|
|
* @param response |
|
|
|
* @param tokenDto |
|
|
|
* @param formDTO |
|
|
|
* @author zxc |
|
|
|
* @date 2021/11/24 10:59 上午 |
|
|
|
*/ |
|
|
|
@PostMapping("exportcommunityselforganization") |
|
|
|
public void exportCommunitySelfOrganization(HttpServletResponse response,@LoginUser TokenDto tokenDto,@RequestBody CommunitySelfOrganizationListFormDTO formDTO) throws Exception { |
|
|
|
CommunitySelfOrganizationListResultDTO resultDTO = icCommunitySelfOrganizationService.communitySelfOrganizationList(tokenDto, formDTO); |
|
|
|
ExcelUtils.exportExcelToTarget(response, null, resultDTO.getList(), ExportCommunitySelfOrganizationExcel.class); |
|
|
|
} |
|
|
|
|
|
|
|
//@PostMapping("importcommunityselforganization")
|
|
|
|
|
|
|
|
/** |
|
|
|
* @Description 添加社区自组织 |
|
|
|
* @param tokenDto |
|
|
|