| | |
| | | * @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); |
| | | |
| | | /** |
| | | * 批量新增党员 |
| | |
| | | * @return 查询结果 |
| | | */ |
| | | @GetMapping("/partybuildIng/usercertification") |
| | | R userCertification(@RequestParam Long id); |
| | | R userCertification(@RequestParam("id") Long id); |
| | | |
| | | /** |
| | | * 查询待认证党员信息 |
| | | * @param pagePartyBuildingMemberVO 查询参数 |
| | | * @return 查询结果 |
| | | */ |
| | | @GetMapping("/partybuildIng/pageusercertification") |
| | | R pagePrePartybuildingmember(PagePartyBuildingMemberVO pagePartyBuildingMemberVO); |
| | | @PostMapping("/partybuildIng/pageusercertification") |
| | | R pagePrePartybuildingmember(@RequestBody PagePartyBuildingMemberVO pagePartyBuildingMemberVO); |
| | | } |