| | |
| | | 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; |
| | | |
| | |
| | | public interface OtherClient { |
| | | |
| | | @GetMapping(value = "/integral/getSetBySiteId") |
| | | R<TIntegralRule> getSetBySiteId(@RequestParam("id") Integer id); |
| | | R<TIntegralRule> getSetBySiteId(@RequestParam("siteId") Integer siteId); |
| | | @GetMapping(value = "/integral/saveIntegralRecord") |
| | | R saveIntegralRecord(@RequestBody IntegralRecord record); |
| | | |
| | | @GetMapping(value = "/integralRule/getServiceStatus/{userId}") |
| | | R<String> getServiceStatus(@PathVariable("userId") Integer userId); |
| | | |
| | | |
| | | } |