| | |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 会员服务 |
| | | * @author ruoyi |
| | |
| | | @PostMapping("/vip/getInfo1") |
| | | R<TVip> getInfo1(@RequestParam("id") Integer id); |
| | | |
| | | |
| | | @PostMapping("/vip/getAllVip") |
| | | R<List<TVip>> getAllVip(); |
| | | @PostMapping(value = "/vip/getInfo") |
| | | R<TVip> getInfo(@RequestParam("id") Integer id); |
| | | |
| | | @PostMapping(value = "/t-app-user/user/give/vip") |
| | | R giveVip(@RequestBody GiveVipDto giveVipDto); |
| | | |
| | | @GetMapping(value = "/vip/getVipList") |
| | | R<List<TVip>> getVipList(); |
| | | } |