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); /** * 门店-医生执行占比情况-月统计 */ @PostMapping("/admin/export/shop/user/doctor/deduction/list/month") Result userDoctorDeductionMonthList(@RequestBody ShopReportDto shopReportDto); /** * 门店-流失客户-导出 */ @PostMapping("/admin/export/shop/loss/user/rate/export") Result lossUserRate(@RequestBody ShopReportDto shopReportDto); /**门店-科室业绩*/ @PostMapping("/admin/export/shop/room/list") Result roomList(@RequestBody ShopReportDto shopReportDto); /**门店-三大项目执行数据*/ @PostMapping("/admin/export/shop/relation/project/list/sale") Result relationProjectList(@RequestBody ShopReportDto shopReportDto); }