From 9bcddaa7b96af4899b31a2ff7a578f6789c4e877 Mon Sep 17 00:00:00 2001 From: fwq <582742538@qq.com> Date: 星期五, 05 一月 2024 10:42:29 +0800 Subject: [PATCH] 映射项目执行业绩 --- phis-feign/src/main/java/com/hz/his/dto/report/ShopReportDto.java | 7 ++++++- phis-feign/src/main/java/com/hz/his/feign/service/platform/bi/BiRelationProjectService.java | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+), 1 deletions(-) diff --git a/phis-feign/src/main/java/com/hz/his/dto/report/ShopReportDto.java b/phis-feign/src/main/java/com/hz/his/dto/report/ShopReportDto.java index c05f351..f7e5f5d 100644 --- a/phis-feign/src/main/java/com/hz/his/dto/report/ShopReportDto.java +++ b/phis-feign/src/main/java/com/hz/his/dto/report/ShopReportDto.java @@ -24,7 +24,12 @@ private String sleepTime; /**闂ㄥ簵鍒楄〃鏍囪瘑*/ private List<String> shopIdList; - /** 鏄惁杩囨护娴嬭瘯鐢ㄦ埛璐﹀彿 */ private Integer isFilterTestAccount; + /**鏄惁缁熻鐜伴噾涓氱哗*/ + private Integer isCountCash = 0; + /**鍛樺伐鏍囪瘑鍒楄〃*/ + private List<String> employeeIdList; + /**缁熻绫诲瀷*/ + private String countType; } diff --git a/phis-feign/src/main/java/com/hz/his/feign/service/platform/bi/BiRelationProjectService.java b/phis-feign/src/main/java/com/hz/his/feign/service/platform/bi/BiRelationProjectService.java new file mode 100644 index 0000000..b361acf --- /dev/null +++ b/phis-feign/src/main/java/com/hz/his/feign/service/platform/bi/BiRelationProjectService.java @@ -0,0 +1,33 @@ +package com.hz.his.feign.service.platform.bi; + +import com.hx.resultTool.Result; +import com.hz.his.dto.report.AppointmentVisitVo; +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-rel-pro") +public interface BiRelationProjectService { + + /** + * 闂ㄥ簵鎵ц涓氱哗鏁版嵁 + */ + @PostMapping("/admin/project/relation/report/shop/list") + Result deductionShopList(@RequestBody ShopReportDto shopReportDto); + + /** + * 鍖荤敓鎵ц涓氱哗鏁版嵁 + */ + @PostMapping("/admin/project/relation/report/doctor/list") + Result deductionDoctorList(@RequestBody AppointmentVisitVo appointmentVisitVo); + + + + +} -- Gitblit v1.8.0