| | |
| | | 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); |
| | | |
| | | @PostMapping("/user-point/getUserPointCopy") |
| | | R<List<UserPointCopy>> getUserPointCopy(@RequestParam("orderId") Long orderId, @RequestParam("type") List<Integer> type); |
| | | |
| | | |
| | | /** |