提交 | 用户 | age
|
18473b
|
1 |
package com.hz.his.feign.service.rfm; |
F |
2 |
|
|
3 |
import com.hx.resultTool.Result; |
|
4 |
import org.springframework.cloud.openfeign.FeignClient; |
|
5 |
import org.springframework.web.bind.annotation.RequestMapping; |
|
6 |
|
|
7 |
/** |
|
8 |
* RFM等级数据区间service |
|
9 |
* @USER: fhx |
|
10 |
* @DATE: 2024/5/28 |
|
11 |
**/ |
c39f96
|
12 |
@FeignClient(name="bi-rfm",path = "/rfm",contextId = "phip-rfm-paragraph-grade") |
18473b
|
13 |
public interface SRfmParagraphGradeService { |
F |
14 |
|
|
15 |
/** |
|
16 |
* RFM综合等级等级区间获取 |
|
17 |
*/ |
|
18 |
@RequestMapping("/grade-paragraph/comprehensive/data") |
|
19 |
Result comprehensiveGradeData(); |
|
20 |
|
|
21 |
|
|
22 |
} |