|
|
@ -455,8 +455,8 @@ public interface UserFeignClient { |
|
|
|
* @author jyyzz |
|
|
|
* @since 2021/8/28 20:28 |
|
|
|
*/ |
|
|
|
@GetMapping(value = "app-user/partyMember/dentityDetail",consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
Result<EpdcAppIdentityDetailResultDTO> getDentityDetail(Long userId); |
|
|
|
@GetMapping(value = "app-user/partyMember/dentityDetail/{userId}",consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
Result<EpdcAppIdentityDetailResultDTO> getDentityDetail(@PathVariable("userId") String userId); |
|
|
|
|
|
|
|
/** |
|
|
|
* 党建引领-党员亮身份推荐 |
|
|
@ -465,8 +465,8 @@ public interface UserFeignClient { |
|
|
|
* @author zhangfenghe |
|
|
|
* @since 2021/8/30 9:08 |
|
|
|
*/ |
|
|
|
@PostMapping(value = "app-user/partyMember/dentityDetail/recommended",consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
Result recommended(String id); |
|
|
|
@PostMapping(value = "app-user/partyMember/brightIdentity/recommended/{id}",consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
Result recommended(@PathVariable("id") String id); |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
@ -476,7 +476,7 @@ public interface UserFeignClient { |
|
|
|
* @author zhangfenghe |
|
|
|
* @since 2021/8/30 9:08 |
|
|
|
*/ |
|
|
|
@PostMapping(value = "app-user/partyMember/dentityDetail/recommendedCancel",consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
Result recommendedCaancel(String id); |
|
|
|
@PostMapping(value = "app-user/partyMember/brightIdentity/recommendedCancel/{id}",consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
Result recommendedCaancel(@PathVariable("id") String id); |
|
|
|
} |
|
|
|
|
|
|
|