From fd90eaebe2d70d1f7cf7ee511f084e0b97fc16a2 Mon Sep 17 00:00:00 2001
From: puzhibing <393733352@qq.com>
Date: 星期四, 06 二月 2025 17:08:12 +0800
Subject: [PATCH] 修改bug和对接测试iotd

---
 ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/feignClient/VipClient.java |    9 ++++++++-
 1 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/feignClient/VipClient.java b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/feignClient/VipClient.java
index 2082451..c0a07e8 100644
--- a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/feignClient/VipClient.java
+++ b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/feignClient/VipClient.java
@@ -12,6 +12,8 @@
 import org.springframework.web.bind.annotation.RequestBody;
 import org.springframework.web.bind.annotation.RequestParam;
 
+import java.util.List;
+
 /**
  * 会员服务
  * @author ruoyi
@@ -33,10 +35,15 @@
      * @return
      */
     @PostMapping("/vip/getInfo1")
-    public R<TVip> getInfo1(@RequestParam("id") Integer id);
+    R<TVip> getInfo1(@RequestParam("id") Integer id);
+
+
     @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();
 }

--
Gitblit v1.7.1