| | |
| | | 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.dto.UploadPdfDTO; |
| | | import com.ruoyi.account.api.model.TAppCoupon; |
| | | import com.ruoyi.account.api.model.TAppUser; |
| | | import com.ruoyi.account.api.model.TAppUserAddress; |
| | |
| | | @ApiOperation(value = "管理后台-根据手机号查询用户ids", tags = {"管理后台-活动费用统计"}) |
| | | @PostMapping(value = "/t-app-user/user/getUserIdsByPhone") |
| | | public R<List<Long>> getUserIdsByPhone(@RequestParam("phone") String phone); |
| | | @ApiOperation(value = "管理后台-开票发送邮件", tags = {"管理后台-开票发送邮件"}) |
| | | @PostMapping(value = "/t-app-user/uploadPdf") |
| | | public R uploadPdf(@RequestBody UploadPdfDTO dto); |
| | | |
| | | /** |
| | | * 根据用户id查询用户信息 |
| | |
| | | */ |
| | | @PostMapping(value = "/t-app-user/user/getUserById/{id}") |
| | | R<TAppUser> getUserById(@PathVariable("id") Long id); |
| | | @PostMapping(value = "/t-app-user/user/getAllUser") |
| | | R<List<TAppUser>> getAllUser(); |
| | | |
| | | |
| | | @PostMapping(value = "/t-app-user/user/coupon/getById") |
| | |
| | | @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); |
| | | |
| | | |
| | |
| | | */ |
| | | @PostMapping("/wxLogin/getWXToken") |
| | | R<String> getWXToken(); |
| | | |
| | | |
| | | /** |
| | | * 敏感词检测 |
| | | * @param content |
| | |
| | | */ |
| | | @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); |
| | | } |