huliguo
2025-04-23 f2070facdb5715e7349df69cfe257289c680d292
ruoyi-api/ruoyi-api-account/src/main/java/com/ruoyi/account/api/feignClient/UserPointClient.java
@@ -28,11 +28,8 @@
   @PostMapping("/user-point/saveUserPoint")
   R saveUserPoint(@RequestBody UserPoint userPoint);
   @PostMapping("/user-point/saveUserPointCopy")
   R saveUserPointCopy(@RequestBody UserPointCopy userPoint);
   @DeleteMapping("/user-point/deleteUserPointCopy")
   R deleteUserPointCopy(@RequestParam("orderId") Long orderId, @RequestParam("type") List<Integer> type);
   @DeleteMapping("/user-point/deleteUserPoint")
   R deleteUserPoint(@RequestParam("orderId") Long orderId);
   
   @PostMapping("/user-point/getUserPointCopy")
   R<List<UserPointCopy>> getUserPointCopy(@RequestParam("orderId") Long orderId, @RequestParam("type") List<Integer> type);
@@ -54,4 +51,7 @@
    */
   @PostMapping("/user-point/judgmentDailyShare")
   R<Boolean> judgmentDailyShare(@RequestParam("appUserId") Long appUserId);
   @PostMapping("/user-point/save")
    R save(@RequestBody UserPoint userPoint);
}