fwq
2024-01-12 a36a9aa6e35d726e30a0957a1f5e91c1e5e4c019
提交 | 用户 | age
ec634a 1 package com.hz.his.feign.service.platform.bi;
F 2
3 import com.hx.resultTool.Result;
4 import com.hz.his.dto.report.ShopReportDto;
5 import org.springframework.cloud.openfeign.FeignClient;
6 import org.springframework.web.bind.annotation.PostMapping;
7 import org.springframework.web.bind.annotation.RequestBody;
8
9
10 /**
11  * 门店销售快报报表
12  * 这里这个name 需要填写 请求的服务提供者的注册到nacos Server上面的服务名,path 是请求接口前缀
13  */
14 @FeignClient(name="phiskin-bi-view-user",path = "/bi-view",contextId = "bi-shop-sale")
15 public interface BiShopSaleService {
16
17     /**
18      * 门店-业绩总列表
19      */
20     @PostMapping("/admin/export/shop/deduction/total/list")
21     Result deductionList(ShopReportDto shopReportDto);
22
23     /**
24      * 门店-执行业绩快报
25      */
26     @PostMapping("/admin/export/shop/deduction/detail/list")
27     Result deductionDetailList(@RequestBody ShopReportDto shopReportDto);
28
29
30     /**
31      * 门店-初诊简报
32      */
33     @PostMapping("/admin/export/shop/first/treat/list")
34     Result firstTreatList(@RequestBody ShopReportDto shopReportDto);
35
36     /**
37      * 门店-预约到诊
38      */
39     @PostMapping("/admin/export/shop/appointment/arrive/list")
40     Result appointmentArriveList(@RequestBody ShopReportDto shopReportDto);
41
42
43     /**
44      * 门店-老带新简报
45      */
46     @PostMapping("/admin/export/shop/old/new/list")
47     Result oldLeadNew(@RequestBody ShopReportDto shopReportDto);
48
49     /**
50      * 门店-会员变动数据
51      */
52     @PostMapping("/admin/export/shop/level/change/list")
53     Result levelChangeList(@RequestBody ShopReportDto shopReportDto);
54
55     /**
56      * 门店-季度活跃客户
57      */
58     @PostMapping("/admin/export/shop/active/user/list")
59     Result activeUserList(@RequestBody ShopReportDto shopReportDto);
60
61
62     /**
63      * 门店-流失客户
64      */
65     @PostMapping("/admin/export/shop/loss/user/list")
66     Result lossUserList(@RequestBody ShopReportDto shopReportDto);
67
68     /**
69      * 门店-核心项目
70      */
71     @PostMapping("/admin/export/shop/core/project/list")
72     Result coreProjectList(@RequestBody ShopReportDto shopReportDto);
73
74     /**
75      * 门店-沉睡客执行业绩
76      */
77     @PostMapping("/admin/export/shop/user/sleep/deduction/list")
78     Result userSleepDeductionList(@RequestBody ShopReportDto shopReportDto);
79
5b359f 80     /**
F 81      * 门店-医生执行占比情况
82      */
83     @PostMapping("/admin/export/shop/user/doctor/deduction/list")
84     Result userDoctorDeductionList(@RequestBody ShopReportDto shopReportDto);
ec634a 85
a95904 86     /**
F 87      * 门店-医生执行占比情况-月统计
88      */
89     @PostMapping("/admin/export/shop/user/doctor/deduction/list/month")
90     Result userDoctorDeductionMonthList(@RequestBody ShopReportDto shopReportDto);
91
c91e5e 92     /**
F 93      * 门店-流失客户-导出
94      */
95     @PostMapping("/admin/export/shop/loss/user/rate/export")
96     Result lossUserRate(@RequestBody ShopReportDto shopReportDto);
97
974056 98     /**门店-科室业绩*/
F 99     @PostMapping("/admin/export/shop/room/list")
100     Result roomList(@RequestBody ShopReportDto shopReportDto);
101
4cd4d6 102     /**门店-三大项目执行数据*/
a36a9a 103     @PostMapping("/admin/export/shop/relation/project/list/sale")
4cd4d6 104     Result relationProjectList(@RequestBody ShopReportDto shopReportDto);
8832fc 105
ec634a 106 }