From 623afb6fbb8ce6adebf237e7b670d9f4f339184d Mon Sep 17 00:00:00 2001 From: fwq <582742538@qq.com> Date: 星期三, 01 五月 2024 00:11:14 +0800 Subject: [PATCH] Merge branch 'master-fwq-积分抵扣现金' into master-prod-new --- phis-feign/src/main/java/com/hz/his/feign/service/platform/bi/BiConsultantDayService.java | 115 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 115 insertions(+), 0 deletions(-) diff --git a/phis-feign/src/main/java/com/hz/his/feign/service/platform/bi/BiConsultantDayService.java b/phis-feign/src/main/java/com/hz/his/feign/service/platform/bi/BiConsultantDayService.java new file mode 100644 index 0000000..afa0b5e --- /dev/null +++ b/phis-feign/src/main/java/com/hz/his/feign/service/platform/bi/BiConsultantDayService.java @@ -0,0 +1,115 @@ +package com.hz.his.feign.service.platform.bi; + +import com.hx.resultTool.Result; +import com.hz.his.dto.report.EmployeeReportDto; +import com.hz.his.dto.report.UserReleaseDto; +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-consultant-day") +public interface BiConsultantDayService { + + /** + * 鍜ㄨ甯�-鍚勪笟缁╂寚鏍囨暟鎹� + * 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); + + + /** + * 鍜ㄨ甯�-鍒拌鏈垚浜ゅ悕鍗� + * + */ + @PostMapping("/admin/export/employee/first/treat/user/list") + Result firstTreatUser(@RequestBody EmployeeReportDto employeeReportDto); + + + /** + * 鍜ㄨ甯�-鏍稿績椤圭洰鎸囨爣鏁版嵁 + */ + @PostMapping("/admin/export/employee/core/project/list") + Result coreProject(@RequestBody EmployeeReportDto employeeReportDto); + + + /** + * 鍜ㄨ甯�-鍏捣閲婃斁鍚嶅崟 + */ + @PostMapping("/admin/export/employee/user/release/list") + Result userReleaseList(@RequestBody UserReleaseDto userReleaseDto); + + /** + * 鍜ㄨ甯�-娴佸け瀹㈡埛鍒楄〃 + */ + @PostMapping("/admin/export/employee/user/lose/list") + Result userLoseList(@RequestBody UserReleaseDto userReleaseDto); + + + /** + * 鍜ㄨ甯�-娌夌潯瀹㈡埛鍒楄〃 + */ + @PostMapping("/admin/export/employee/user/sleep/list") + Result userSleepList(@RequestBody UserReleaseDto userReleaseDto); + + /** + * 鍜ㄨ甯�-娌夌潯瀹㈡埛姣斾緥 + */ + @PostMapping("/admin/export/employee/user/sleep/proportion") + Result userSleepProportion(@RequestBody UserReleaseDto userReleaseDto); + + /** + * 鍜ㄨ甯�-浼氬憳绛夌骇鍒嗗竷鍒楄〃 + */ + @PostMapping("/admin/export/employee/user/member/distribution") + Result memberDistribution(@RequestBody UserReleaseDto userReleaseDto); + + /** + * 鍜ㄨ甯�-浼氬憳绛夌骇鍒嗘瘮渚� + */ + @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/oldNew/top/employee") + Result oldNewReportTopEmployee(@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); + + /** + * 鍜ㄨ甯�-涓夊ぇ椤圭洰鎵ц鏁版嵁 + */ + @PostMapping("/admin/export/employee/relation/project/list") + Result relationProjectList(@RequestBody EmployeeReportDto employeeReportDto); + +} -- Gitblit v1.8.0