记得上下班打卡 | git大法好,push需谨慎

Commit 10520636 authored by 张国柄's avatar 张国柄

fix feign api;

parent 578d557d
...@@ -17,12 +17,11 @@ import java.util.List; ...@@ -17,12 +17,11 @@ import java.util.List;
@Component @Component
@FeignClient(name = "liquidnet-service-kylin", @FeignClient(name = "liquidnet-service-kylin",
contextId = "", path = "", contextId = "FeignKylinOrderRefundClient", path = "",
fallback = FallbackFactory.Default.class) fallback = FallbackFactory.Default.class)
public interface FeignKylinOrderRefundClient { public interface FeignKylinOrderRefundClient {
@PostMapping("admin/refund/apply") @PostMapping("admin/refund/apply")
@ApiOperation("申请退款")
ResponseDto<Object> refundApply( ResponseDto<Object> refundApply(
@RequestBody String orderTicketsId, @RequestBody String orderTicketsId,
@RequestBody String orderRefundBatchesId, @RequestBody String orderRefundBatchesId,
......
...@@ -12,11 +12,11 @@ import java.util.List; ...@@ -12,11 +12,11 @@ import java.util.List;
@Component @Component
@FeignClient(name = "liquidnet-service-kylin", @FeignClient(name = "liquidnet-service-kylin",
contextId = "", path = "", contextId = "FeignKylinPerformanceClient", path = "",
fallback = FallbackFactory.Default.class) fallback = FallbackFactory.Default.class)
public interface FeignKylinPerformanceClient { public interface FeignKylinPerformanceClient {
// 演出列表 // 演出列表
@GetMapping(value = "performance/list") @GetMapping(value = "performance/list")
ResponseDto<List<KylinPerformanceVo>> performanceList(@RequestParam String... performancesIds); ResponseDto<List<KylinPerformanceVo>> performanceList(@RequestParam("performancesIds") String... performancesIds);
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment