删除无用代码

This commit is contained in:
yanglei 2025-11-20 11:30:15 +08:00
parent ccce3bd3f0
commit c3dba54dca

View File

@ -18,51 +18,6 @@ import org.springframework.web.bind.annotation.RequestBody;
@FeignClient(name = "ebike-user", configuration = {ExampleFeignConfiguration.class, FeignTokenInterceptor.class})
public interface UserFeignClient {
//
// /**
// * 订单发起退款申请
// *
// * @param orderId 订单ID
// * @return @ {@code 200} 成功{@code 500} 失败
// */
// @GetMapping("ebikeOrder/refundApply")
// JsonResult<?> refundApply(@RequestParam("orderId") Long orderId);
//
// /**
// * 订单发起退款
// *
// * @param orderId 订单ID
// * @return @ {@code 200} 成功{@code 500} 失败
// */
// @GetMapping("ebikeOrder/refund")
// JsonResult<?> refund(@RequestParam("orderId") Long orderId);
//
// /**
// * 订单退款完成
// *
// * @param orderId 订单ID
// * @return @ {@code 200} 成功{@code 500} 失败
// */
// @GetMapping("ebikeOrder/doneRefund")
// JsonResult<?> doneRefund(@RequestParam("orderId") Long orderId);
//
// /**
// * 订单退款失败
// *
// * @param orderId 订单ID
// * @return @ {@code 200} 成功{@code 500} 失败
// */
// @GetMapping("ebikeOrder/failRefund")
// JsonResult<?> failRefund(@RequestParam("orderId") Long orderId);
//
// /**
// * 订单退款驳回
// *
// * @param orderId 订单ID
// * @return @ {@code 200} 成功{@code 500} 失败
// */
// @GetMapping("ebikeOrder/rejectRefund")
// JsonResult<?> rejectRefund(@RequestParam("orderId") Long orderId);
/**
* 审核退款申请