| | |
| | | package com.ruoyi.account.api.feignClient; |
| | | |
| | | import com.ruoyi.account.api.dto.GiveVipDto; |
| | | import com.ruoyi.account.api.dto.SendMessageDTO; |
| | | import com.ruoyi.account.api.model.TAppCoupon; |
| | | import com.ruoyi.account.api.model.TAppUser; |
| | | import com.ruoyi.account.api.model.TAppUserAddress; |
| | |
| | | @PostMapping("/t-app-user/user/updateAppUser") |
| | | R updateAppUser(@RequestBody TAppUser appUser); |
| | | |
| | | @PostMapping("/t-app-user/user/points/change") |
| | | R change(@RequestBody PointChangeDto points); |
| | | // @PostMapping("/t-app-user/user/points/change") |
| | | // R change(@RequestBody PointChangeDto points); |
| | | @PostMapping("/t-app-user/user/points/change/down") |
| | | R changeDown(@RequestBody PointChangeDto points); |
| | | |
| | |
| | | @PostMapping(value = "/t-app-user/refundPoints/{param}") |
| | | public R refundPoints(@PathVariable("param")String param); |
| | | |
| | | @PostMapping(value = "/t-app-user/user/give/vip") |
| | | @PostMapping(value = "/t-app-user/user/give/vip1") |
| | | public R giveVip(@RequestBody GiveVipDto giveVipDto); |
| | | |
| | | |
| | | /** |
| | | * 获取微信token |
| | | * @return |
| | | */ |
| | | @PostMapping("/wxLogin/getWXToken") |
| | | R<String> getWXToken(); |
| | | |
| | | /** |
| | | * 敏感词检测 |
| | | * @param content |
| | | * @param openid |
| | | * @return |
| | | */ |
| | | @PostMapping("/wxLogin/sensitiveWordDetection") |
| | | R<Boolean> sensitiveWordDetection (@RequestParam("content") String content, @RequestParam("openid") String openid); |
| | | |
| | | /** |
| | | * 短信发送 |
| | | * @return |
| | | */ |
| | | @PostMapping("/t-app-user/sendMessage") |
| | | R<String> sendMessage(@RequestBody SendMessageDTO sendMessageDTO); |
| | | } |