fwq
2023-04-14 08fa864c5a8510f3981109154aecba7eab445094
提交 | 用户 | age
a66cab 1 package com.hz.his.feign.service.platform.bi;
F 2
3 import com.hx.resultTool.Result;
4 import com.hz.his.dto.report.ShopReportDto;
5 import org.springframework.cloud.openfeign.FeignClient;
6 import org.springframework.web.bind.annotation.PostMapping;
7 import org.springframework.web.bind.annotation.RequestBody;
8
9
10 /**
11  * 门店日报表
12  * 这里这个name 需要填写 请求的服务提供者的注册到nacos Server上面的服务名,path 是请求接口前缀
13  */
14 @FeignClient(name="phiskin-bi-view-user",path = "/bi-view",contextId = "bi-shop-day")
15 public interface BiShopDayService {
16
17     /**
18      * 日报表-当日到店信息
222522 19      * ArriveShopVo
a66cab 20      */
F 21     @PostMapping("/admin/export/shop/day/arriveShop")
22     Result arriveShop(@RequestBody ShopReportDto shopReportDto);
23
24     /**
25      * 日报表-当日各业绩指标
222522 26      * ShopAchievementVo
a66cab 27      */
F 28     @PostMapping("/admin/export/shop/day/indicators")
29     Result indicators(@RequestBody ShopReportDto shopReportDto);
30
31     /**
32      * 新老会员数据
222522 33      * ShopOldLeadNewVo
a66cab 34      */
F 35     @PostMapping("/admin/export/shop/day/old/lead/new")
36     Result oldLeadNew(@RequestBody ShopReportDto shopReportDto);
37
38     /**
39      * 重点项目指标数据
222522 40      * ShopImportantProjectVo
a66cab 41      */
F 42     @PostMapping("/admin/export/shop/important/project/indicators/list")
43     Result importantProjectIndicators(@RequestBody ShopReportDto shopReportDto);
44
45     /**
46      * 其它业绩信息
222522 47      * ShopOtherVo
a66cab 48      */
08fa86 49     @PostMapping("/admin/export/shop/other/list")
a66cab 50     Result otherInAchievement(@RequestBody ShopReportDto shopReportDto);
F 51
52 }