Pu Zhibing
2025-03-31 97d99b76bdde8952cf257c3c85c1a8a080927af4
ruoyi-api/ruoyi-api-account/src/main/java/com/ruoyi/account/api/feignClient/UserPointClient.java
@@ -29,10 +29,16 @@
   R saveUserPoint(@RequestBody UserPoint userPoint);
   @PostMapping("/user-point/saveUserPointCopy")
   R saveUserPoint(@RequestBody UserPointCopy userPoint);
   R saveUserPointCopy(@RequestBody UserPointCopy userPoint);
   @DeleteMapping("/user-point/deleteUserPointCopy")
   R deleteUserPointCopy(@RequestParam("orderId") Long orderId);
   R deleteUserPointCopy(@RequestParam("orderId") Long orderId, @RequestParam("type") List<Integer> type);
   @DeleteMapping("/user-point/deleteUserPointCopyByIds")
   R deleteUserPointCopyByIds(@RequestParam("ids") List<Long> ids);
   @PostMapping("/user-point/getUserPointCopy")
   R<List<UserPointCopy>> getUserPointCopy(@RequestParam("orderId") Long orderId, @RequestParam("type") List<Integer> type);
   /**