puzhibing
2024-12-26 9006b9705a222cce51daf973fa1bb989cbd2a873
ruoyi-service/ruoyi-order/src/main/java/com/ruoyi/order/controller/RefundPassController.java
@@ -98,13 +98,13 @@
   
   
   @ResponseBody
   @PutMapping("/deliverGoodsRefundPass/{id}/{code}")
   @PostMapping("/deliverGoodsRefundPass")
   @ApiOperation(value = "售后已发货操作", tags = {"我的订单-个人中心-小程序"})
   @ApiImplicitParams({
         @ApiImplicitParam(name = "id", value = "售后数据id", required = true, dataType = "long"),
         @ApiImplicitParam(name = "code", value = "快递单号", required = true, dataType = "string"),
   })
   public R deliverGoodsRefundPass(@PathVariable("id") Long id, @PathVariable("code") String code){
   public R deliverGoodsRefundPass(@RequestParam("id") String id, @RequestParam("code") String code){
      RefundPass refundPass = refundPassService.getById(id);
      if(null == refundPass){
         return R.fail();