xuhy
2025-08-25 0ef46975993c06e780ec4981d7535167673aa51d
ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/feignClient/OtherClient.java
@@ -8,6 +8,7 @@
import com.ruoyi.other.api.factory.StoreFallbackFactory;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestParam;
@@ -23,5 +24,8 @@
    @GetMapping(value = "/integral/saveIntegralRecord")
    R saveIntegralRecord(@RequestBody IntegralRecord record);
    @GetMapping(value = "/integralRule/getServiceStatus/{userId}")
    R<String> getServiceStatus(@PathVariable("userId") Integer userId);
}