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