| | |
| | | * @author: huang.hongfa weixin hhf9596 qq 959656820 |
| | | * @create: 2020-11-30 09:50 |
| | | **/ |
| | | @FeignClient(value = "partybuilding") |
| | | @FeignClient(value = "huacheng-partybuilding") |
| | | public interface PartyBuildingService { |
| | | /** |
| | | * 新增党员 |
| | |
| | | * 查询用户党员认证信息 |
| | | * |
| | | * @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/checkMember") |
| | | R checkMember(@RequestParam("idCard")String idCard); |
| | | |
| | | /** |
| | | * 小程序分页查询党员列表 |
| | | * @param partyBuildingMemberVO 请求参数 |
| | | * @return 党员列表 |
| | | */ |
| | | @PostMapping("/partybuildIng/getPagePbMember") |
| | | R getPagePbMember(@RequestBody PartyBuildingMemberVO partyBuildingMemberVO); |
| | | |
| | | |
| | | @GetMapping("/partybuildIng/getPartyMember") |
| | | public R getPartyMember(@RequestParam("phone")String phone,@RequestParam("type")Integer type); |
| | | |
| | | @GetMapping("/partybuildIng/memberDetail") |
| | | public R memberDetail(@RequestParam("id")Long id); |
| | | |
| | | @GetMapping("/comPbCheckUnit/detailByPhone") |
| | | public R detailByPhone(@RequestParam("phone") String phone); |
| | | } |