44323
2024-05-21 a2762d243c7f5585b7996eeb8e9aeb0634af0167
ruoyi-api/ruoyi-api-management/src/main/java/com/ruoyi/management/api/feignClient/ManagementClient.java
@@ -11,6 +11,7 @@
import com.ruoyi.management.api.query.UseGuideQuery;
import io.swagger.annotations.ApiOperation;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
@@ -21,6 +22,7 @@
    @PostMapping(value = "/tSysSet/getPage1")
    R<List<TPage>> getPage1();
    @PostMapping("/tUser/getVipSet1")
    R<List<TVipSet>> getVipSet1();
@@ -30,4 +32,7 @@
    @PostMapping("/tFeedback/addFeedBack")
    R addFeedBack(@RequestBody TFeedback dto);
    @PostMapping("/tSysSet/agreement1/{type}")
    R<String> agreement1(@PathVariable("type") Integer type);
}