|
|
@ -1,5 +1,6 @@ |
|
|
|
package com.elink.esua.epdc.feign; |
|
|
|
|
|
|
|
import com.elink.esua.epdc.common.token.dto.TokenDto; |
|
|
|
import com.elink.esua.epdc.commons.tools.constant.ServiceConstant; |
|
|
|
import com.elink.esua.epdc.commons.tools.utils.Result; |
|
|
|
import com.elink.esua.epdc.dto.CachingUserInfoDTO; |
|
|
@ -26,7 +27,7 @@ import java.util.List; |
|
|
|
* @email yujintao@elink-cn.com |
|
|
|
* @date 2019/9/7 9:27 |
|
|
|
*/ |
|
|
|
@FeignClient(name = ServiceConstant.EPDC_USER_SERVER, fallback = UserFeignClientFallback.class) |
|
|
|
@FeignClient(name = ServiceConstant.EPDC_USER_SERVER, fallback = UserFeignClientFallback.class,url = "http://localhost:9068") |
|
|
|
public interface UserFeignClient { |
|
|
|
|
|
|
|
/** |
|
|
@ -455,28 +456,7 @@ public interface UserFeignClient { |
|
|
|
* @author jyyzz |
|
|
|
* @since 2021/8/28 20:28 |
|
|
|
*/ |
|
|
|
@GetMapping(value = "app-user/partyMember/dentityDetail/{userId}",consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
Result<EpdcAppIdentityDetailResultDTO> getDentityDetail(@PathVariable("userId") String userId); |
|
|
|
|
|
|
|
/** |
|
|
|
* 党建引领-党员亮身份推荐 |
|
|
|
* @params [id] |
|
|
|
* @return com.elink.esua.epdc.commons.tools.utils.Result |
|
|
|
* @author zhangfenghe |
|
|
|
* @since 2021/8/30 9:08 |
|
|
|
*/ |
|
|
|
@PostMapping(value = "app-user/partyMember/brightIdentity/recommended/{id}",consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
Result recommended(@PathVariable("id") String id); |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
* 党建引领-党员亮身份取消推荐 |
|
|
|
* @params [id] |
|
|
|
* @return com.elink.esua.epdc.commons.tools.utils.Result |
|
|
|
* @author zhangfenghe |
|
|
|
* @since 2021/8/30 9:08 |
|
|
|
*/ |
|
|
|
@PostMapping(value = "app-user/partyMember/brightIdentity/recommendedCancel/{id}",consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
Result recommendedCaancel(@PathVariable("id") String id); |
|
|
|
@GetMapping(value = "app-user/partyMember/dentityDetail",consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
Result<EpdcAppIdentityDetailResultDTO> getDentityDetail(EpdcAppIdentityDetailFormDTO userDetail); |
|
|
|
} |
|
|
|
|
|
|
|