提交 | 用户 | 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 |
import org.springframework.web.bind.annotation.RequestMapping; |
|
9 |
|
|
10 |
|
|
11 |
/** |
|
12 |
* 门店日报表 |
|
13 |
* 这里这个name 需要填写 请求的服务提供者的注册到nacos Server上面的服务名,path 是请求接口前缀 |
|
14 |
*/ |
|
15 |
@FeignClient(name="phiskin-bi-view-user",path = "/bi-view",contextId = "bi-shop-day") |
|
16 |
public interface BiShopDayService { |
|
17 |
|
|
18 |
/** |
|
19 |
* 日报表-当日到店信息 |
|
20 |
*/ |
|
21 |
@PostMapping("/admin/export/shop/day/arriveShop") |
|
22 |
Result arriveShop(@RequestBody ShopReportDto shopReportDto); |
|
23 |
|
|
24 |
/** |
|
25 |
* 日报表-当日各业绩指标 |
|
26 |
*/ |
|
27 |
@PostMapping("/admin/export/shop/day/indicators") |
|
28 |
Result indicators(@RequestBody ShopReportDto shopReportDto); |
|
29 |
|
|
30 |
/** |
|
31 |
* 新老会员数据 |
|
32 |
*/ |
|
33 |
@PostMapping("/admin/export/shop/day/old/lead/new") |
|
34 |
Result oldLeadNew(@RequestBody ShopReportDto shopReportDto); |
|
35 |
|
|
36 |
/** |
|
37 |
* 重点项目指标数据 |
|
38 |
*/ |
|
39 |
@PostMapping("/admin/export/shop/important/project/indicators/list") |
|
40 |
Result importantProjectIndicators(@RequestBody ShopReportDto shopReportDto); |
|
41 |
|
|
42 |
/** |
|
43 |
* 其它业绩信息 |
|
44 |
*/ |
|
45 |
@RequestMapping("/admin/export/shop/other/list") |
|
46 |
Result otherInAchievement(@RequestBody ShopReportDto shopReportDto); |
|
47 |
|
|
48 |
} |