25 changed files with 303 additions and 10 deletions
@ -0,0 +1,25 @@ |
|||||
|
package com.elink.esua.epdc.feign; |
||||
|
|
||||
|
import com.elink.esua.epdc.commons.tools.constant.ServiceConstant; |
||||
|
import com.elink.esua.epdc.commons.tools.utils.Result; |
||||
|
import com.elink.esua.epdc.feign.fallback.PointsFeignClientFallback; |
||||
|
import org.springframework.cloud.openfeign.FeignClient; |
||||
|
import org.springframework.http.MediaType; |
||||
|
import org.springframework.web.bind.annotation.PostMapping; |
||||
|
|
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* 积分管理模块 |
||||
|
* |
||||
|
* @author work@yujt.net.cn |
||||
|
* @date 2019/9/18 15:37 |
||||
|
*/ |
||||
|
@FeignClient(name = ServiceConstant.EPDC_POINTS_SERVER, fallback = PointsFeignClientFallback.class) |
||||
|
public interface PointsFeignClient { |
||||
|
|
||||
|
|
||||
|
@PostMapping(value = "points/pointslogs/deletePointsByReferenceId", consumes = MediaType.APPLICATION_JSON_VALUE) |
||||
|
Result deletePointsByTopic(List<String> topicIdList); |
||||
|
|
||||
|
} |
@ -0,0 +1,23 @@ |
|||||
|
package com.elink.esua.epdc.feign.fallback; |
||||
|
|
||||
|
import com.elink.esua.epdc.commons.tools.constant.ServiceConstant; |
||||
|
import com.elink.esua.epdc.commons.tools.utils.ModuleUtils; |
||||
|
import com.elink.esua.epdc.commons.tools.utils.Result; |
||||
|
import com.elink.esua.epdc.dto.PointsLogsBindUnIdDTO; |
||||
|
import com.elink.esua.epdc.feign.PointsFeignClient; |
||||
|
import org.springframework.stereotype.Component; |
||||
|
|
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* @author work@yujt.net.cn |
||||
|
* @date 2019/9/18 15:38 |
||||
|
*/ |
||||
|
@Component |
||||
|
public class PointsFeignClientFallback implements PointsFeignClient { |
||||
|
|
||||
|
@Override |
||||
|
public Result deletePointsByTopic(List<String> topicIdList) { |
||||
|
return ModuleUtils.feignConError(ServiceConstant.EPDC_POINTS_SERVER, "deletePointsByTopic", topicIdList); |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue