java110
2023-05-26 7d2b2ef419bdc5b6d5d4db905eff362db4b08880
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
package com.java110.intf.report;
 
import com.java110.config.feign.FeignConfiguration;
import com.java110.dto.report.QueryStatisticsDto;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
 
import java.util.List;
import java.util.Map;
 
/**
 * @ClassName IReportFeeStatisticsInnerServiceSMO
 * @Description 费用统计类 服务类
 * @Author wuxw
 * @Date 2019/4/24 9:04
 * @Version 1.0
 * add by wuxw 2019/4/24
 **/
@FeignClient(name = "report-service", configuration = {FeignConfiguration.class})
@RequestMapping("/reportOrderStatisticsApi")
public interface IReportOrderStatisticsInnerServiceSMO {
 
 
    /**
     * <p>查询投诉工单数</p>
     *
     * @param queryStatisticsDto 数据对象分享
     */
    @RequestMapping(value = "/getComplaintOrderCount", method = RequestMethod.POST)
    double getComplaintOrderCount(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
 
    /**
     * 查询未处理 投诉工单
     * @param queryStatisticsDto
     * @return
     */
    @RequestMapping(value = "/getUndoComplaintOrderCount", method = RequestMethod.POST)
    double getUndoComplaintOrderCount(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    /**
     * 查询已处理 投诉工单
     * @param queryStatisticsDto
     * @return
     */
    @RequestMapping(value = "/getFinishComplaintOrderCount", method = RequestMethod.POST)
    double getFinishComplaintOrderCount(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    @RequestMapping(value = "/getRepairOrderCount", method = RequestMethod.POST)
    double getRepairOrderCount(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    @RequestMapping(value = "/getUndoRepairOrderCount", method = RequestMethod.POST)
    double getUndoRepairOrderCount(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    @RequestMapping(value = "/getFinishRepairOrderCount", method = RequestMethod.POST)
    double getFinishRepairOrderCount(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    @RequestMapping(value = "/getInspectionOrderCount", method = RequestMethod.POST)
    double getInspectionOrderCount(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    @RequestMapping(value = "/getUndoInspectionOrderCount", method = RequestMethod.POST)
    double getUndoInspectionOrderCount(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    @RequestMapping(value = "/getFinishInspectionOrderCount", method = RequestMethod.POST)
    double getFinishInspectionOrderCount(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    @RequestMapping(value = "/getMaintainanceOrderCount", method = RequestMethod.POST)
    double getMaintainanceOrderCount(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    @RequestMapping(value = "/getUndoMaintainanceOrderCount", method = RequestMethod.POST)
    double getUndoMaintainanceOrderCount(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    @RequestMapping(value = "/getFinishMaintainanceOrderCount", method = RequestMethod.POST)
    double getFinishMaintainanceOrderCount(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    @RequestMapping(value = "/getNotepadOrderCount", method = RequestMethod.POST)
    double getNotepadOrderCount(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    @RequestMapping(value = "/getChargeMachineOrderCount", method = RequestMethod.POST)
    double getChargeMachineOrderCount(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    @RequestMapping(value = "/getChargeMonthOrderCount", method = RequestMethod.POST)
    double getChargeMonthOrderCount(@RequestBody QueryStatisticsDto queryStatisticsDto);
}