| | |
| | | @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); |
| | |
| | | */ |
| | | @PostMapping("/user-point/judgmentDailyShare") |
| | | R<Boolean> judgmentDailyShare(@RequestParam("appUserId") Long appUserId); |
| | | |
| | | @PostMapping("/user-point/save") |
| | | R save(@RequestBody UserPoint userPoint); |
| | | } |