|  |  |  | 
|---|
|  |  |  | * @return 编辑结果 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @PostMapping("/partybuildIng/resetpartyorganization") | 
|---|
|  |  |  | R resetPartyOrganization(PartyOrganizationVO partyOrganizationVO); | 
|---|
|  |  |  | R resetPartyOrganization(@RequestBody PartyOrganizationVO partyOrganizationVO); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 删除党支部 | 
|---|
|  |  |  | 
|---|
|  |  |  | * @return 删除结果 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @PostMapping("/partybuildIng/deletepartyorganization") | 
|---|
|  |  |  | R deletePartyOrganization(PartyOrganizationVO partyOrganizationVO); | 
|---|
|  |  |  | R deletePartyOrganization(@RequestBody PartyOrganizationVO partyOrganizationVO); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 批量新增党员 | 
|---|
|  |  |  | 
|---|
|  |  |  | @PostMapping("/partybuildIng/addactivityinfo") | 
|---|
|  |  |  | R addActivityApplets(@RequestBody ComPbActivityDTO comPbActivityDTO); | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 查询用户党员认证信息 | 
|---|
|  |  |  | * @param id 用户ID | 
|---|
|  |  |  | * @return 查询结果 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @GetMapping("/partybuildIng/usercertification") | 
|---|
|  |  |  | R userCertification(@RequestParam("id") Long id); | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 查询待认证党员信息 | 
|---|
|  |  |  | * @param pagePartyBuildingMemberVO 查询参数 | 
|---|
|  |  |  | * @return 查询结果 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @PostMapping("/partybuildIng/pageusercertification") | 
|---|
|  |  |  | R pagePrePartybuildingmember(@RequestBody PagePartyBuildingMemberVO pagePartyBuildingMemberVO); | 
|---|
|  |  |  | } | 
|---|