| | |
| | | /** |
| | | * 根据id编辑用户 |
| | | */ |
| | | @PostMapping("/appUser/editAppUserById") |
| | | @PostMapping("/app-user/editAppUserById") |
| | | R<Void> editAppUserById(@RequestParam("appUser") AppUser appUser); |
| | | |
| | | @PostMapping("/appUser/getCouponCount") |
| | | @PostMapping("/app-user/getCouponCount") |
| | | R<Long> getCouponCount(@RequestParam("userId")Long userId, @RequestParam("couponId") Integer couponId ); |
| | | |
| | | /** |
| | |
| | | @GetMapping("/appUserShop/shop/{userId}") |
| | | R<List<AppUserShop>> getAppUserShop(@PathVariable("userId") Long userId); |
| | | |
| | | /** |
| | | * 根据用户id获取用户的祖籍列表 |
| | | */ |
| | | @GetMapping("/appletLogin/getUserAncestorList") |
| | | R<List<AppUser>> getUserAncestorList(@RequestParam("id") Long id); |
| | | |
| | | |
| | | |
| | | @PostMapping("/app-user/getVipCount") |
| | | R<Long> getVipCount(@RequestParam("userId")Long userId, @RequestParam("vipId") Integer vipId ); |
| | | } |