New file |
| | |
| | | package com.hz.his.feign.service.rfm; |
| | | |
| | | import com.hx.resultTool.Result; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | |
| | | /** |
| | | * RFM等级数据区间service |
| | | * @USER: fhx |
| | | * @DATE: 2024/5/28 |
| | | **/ |
| | | @FeignClient(name="phi-rfm-service",path = "/rfm",contextId = "phip-rfm-paragraph-grade") |
| | | public interface SRfmParagraphGradeService { |
| | | |
| | | /** |
| | | * RFM综合等级等级区间获取 |
| | | */ |
| | | @RequestMapping("/grade-paragraph/comprehensive/data") |
| | | Result comprehensiveGradeData(); |
| | | |
| | | |
| | | } |