From ec634aaa11e37c681b9c289982f432e15c69abbd Mon Sep 17 00:00:00 2001
From: fwq <582742538@qq.com>
Date: 星期五, 14 四月 2023 17:34:01 +0800
Subject: [PATCH] 门店销售快报

---
 phis-feign/src/main/java/com/hz/his/feign/service/platform/bi/BiShopSaleService.java |   82 +++++++++++++++++++++++++++++++++++++++++
 1 files changed, 82 insertions(+), 0 deletions(-)

diff --git a/phis-feign/src/main/java/com/hz/his/feign/service/platform/bi/BiShopSaleService.java b/phis-feign/src/main/java/com/hz/his/feign/service/platform/bi/BiShopSaleService.java
new file mode 100644
index 0000000..a7f4043
--- /dev/null
+++ b/phis-feign/src/main/java/com/hz/his/feign/service/platform/bi/BiShopSaleService.java
@@ -0,0 +1,82 @@
+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 闇�瑕佸~鍐� 璇锋眰鐨勬湇鍔℃彁渚涜�呯殑娉ㄥ唽鍒皀acos Server涓婇潰鐨勬湇鍔″悕锛宲ath 鏄姹傛帴鍙e墠缂�
+ */
+@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);
+
+    /**
+     * 闂ㄥ簵-瀛e害娲昏穬瀹㈡埛
+     */
+    @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);
+
+
+
+}

--
Gitblit v1.8.0