fhx
2023-09-04 3f35e0bf6ad473384892dde673c704fe419c316a
phis-feign/src/main/java/com/hz/his/feign/service/platform/bi/BiConsultantDayService.java
@@ -9,7 +9,7 @@
/**
 * 咨询师日表
 * 咨询师日报
 * 这里这个name 需要填写 请求的服务提供者的注册到nacos Server上面的服务名,path 是请求接口前缀
 */
@FeignClient(name="phiskin-bi-view-user",path = "/bi-view",contextId = "bi-consultant-day")
@@ -17,12 +17,14 @@
    /**
     * 咨询师-各业绩指标数据
     * EmployeeAchievementVo
     */
    @PostMapping("/admin/export/employee/indicators/list")
    Result indicators(@RequestBody EmployeeReportDto employeeReportDto);
    /**
     * 咨询师-初诊情况
     *  EmployeeFirstTreatVo
     */
    @PostMapping("/admin/export/employee/first/treat/list")
    Result firstTreat(@RequestBody EmployeeReportDto employeeReportDto);
@@ -30,6 +32,7 @@
    /**
     * 咨询师-到访未成交名单
     *
     */
    @PostMapping("/admin/export/employee/first/treat/user/list")
    Result firstTreatUser(@RequestBody EmployeeReportDto employeeReportDto);
@@ -79,4 +82,22 @@
    @PostMapping("/admin/export/employee/user/member/distribution/proportion")
    Result memberDistributionProportion(@RequestBody UserReleaseDto userReleaseDto);
    /**
     * 咨询师-老带新业绩
     */
    @PostMapping("/admin/export/employee/oldNew/report")
    Result oldNewReport(@RequestBody EmployeeReportDto employeeReportDto);
    /**
     * 咨询师-预约周期报表
     */
    @PostMapping("/admin/export/employee/cycle/week/list")
    Result cycleWeekList(@RequestBody EmployeeReportDto employeeReportDto);
    /**
     * 咨询师-预约周期报表-导出
     */
    @PostMapping("/admin/export/employee/cycle/week/list/export")
    Result cycleWeekListExport(@RequestBody EmployeeReportDto employeeReportDto);
}