| | |
| | | |
| | | import java.util.List; |
| | | |
| | | import com.panzhihua.common.model.vos.partybuilding.excel.ComPbMemberRoleExcelVo; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | |
| | | */ |
| | | @PostMapping("/partybuildIng/pagepartyorganization") |
| | | R pagePartyOrganization(@RequestBody PagePartyOrganizationVO pagePartyOrganizationVO); |
| | | |
| | | /** |
| | | * 导出党员信息 |
| | | * |
| | | * @param pagePartyOrganizationVO |
| | | * 查询信息 |
| | | * @return 分页数据 |
| | | */ |
| | | @PostMapping("/partybuildIng/exportPartyMember") |
| | | R exportPartyMember(@RequestBody PagePartyOrganizationVO pagePartyOrganizationVO); |
| | | |
| | | /** |
| | | * 党员活动 |
| | |
| | | * 查询用户党员认证信息 |
| | | * |
| | | * @param id |
| | | * @param communityId |
| | | * 用户ID |
| | | * @return 查询结果 |
| | | */ |
| | | @GetMapping("/partybuildIng/usercertification") |
| | | R userCertification(@RequestParam("id") Long id); |
| | | R userCertification(@RequestParam("id") Long id,@RequestParam("communityId")Long communityId); |
| | | |
| | | /** |
| | | * 查询待认证党员信息 |
| | |
| | | */ |
| | | @GetMapping("/partybuildIng/getHeaderOrgDataStatistics") |
| | | R getHeaderOrgDataStatistics(@RequestParam("communityId") Long communityId); |
| | | |
| | | /** |
| | | * 党员数据统计-党员导出数据查询 |
| | | * @param statisticsMemberDto 请求参数 |
| | | * @return 党员导出数据 |
| | | */ |
| | | @PostMapping("/partybuildIng/exportDataStatisticsMember") |
| | | R exportDataStatisticsMember(@RequestBody PageComDataStatisticsMemberDto statisticsMemberDto); |
| | | |
| | | /** |
| | | * 党委导入接口 |
| | | * @param memberRoleExcelVoList 数据列表 |
| | | * @param communityId 社区id |
| | | * @param userId 用户id |
| | | * @return 导入结果 |
| | | */ |
| | | @PostMapping("/partybuildIng/importPbMemberRole") |
| | | R importPbMemberRole(@RequestBody List<ComPbMemberRoleExcelVo> memberRoleExcelVoList,@RequestParam("communityId") Long communityId,@RequestParam("userId") Long userId); |
| | | |
| | | /** |
| | | * 身份证查询是否党员 |
| | | * @param idCard |
| | | * @return |
| | | */ |
| | | @GetMapping("/partybuildIng/checkMember") |
| | | R checkMember(@RequestParam("idCard")String idCard); |
| | | } |