|
|
@ -299,7 +299,7 @@ public class UserFeignClientFallback implements UserFeignClient { |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public Result<List<VolunteerTagsSumResultDTO>> getVolunteerTags() { |
|
|
|
public Result<List<VolunteerTagsResultDTO>> getVolunteerTags() { |
|
|
|
return ModuleUtils.feignConError(ServiceConstant.EPDC_USER_SERVER, "getVolunteerTags", null); |
|
|
|
} |
|
|
|
|
|
|
@ -337,4 +337,9 @@ public class UserFeignClientFallback implements UserFeignClient { |
|
|
|
public Result joinTeam(VolunteerTeamFormDTO formDto) { |
|
|
|
return ModuleUtils.feignConError(ServiceConstant.EPDC_USER_SERVER, "joinTeam", formDto); |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public Result<List<VolunteerTagsSumResultDTO>> getVolunteerTagList() { |
|
|
|
return ModuleUtils.feignConError(ServiceConstant.EPDC_USER_SERVER, "getVolunteerTagList", null); |
|
|
|
} |
|
|
|
} |
|
|
|