Your Name
2023-07-04 d3e23e26fcfc17e770fca7c29b290ef5082e5734
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
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("/reportFeeStatisticsApi")
public interface IReportFeeStatisticsInnerServiceSMO {
 
 
    /**
     * <p>查询历史月欠费</p>
     *
     * @param queryFeeStatisticsDto 数据对象分享
     */
    @RequestMapping(value = "/getHisMonthOweFee", method = RequestMethod.POST)
    double getHisMonthOweFee(@RequestBody QueryStatisticsDto queryFeeStatisticsDto);
 
    /**
     * 查询当月欠费
     *
     * @param queryFeeStatisticsDto
     * @return
     */
    @RequestMapping(value = "/getCurMonthOweFee", method = RequestMethod.POST)
    double getCurMonthOweFee(@RequestBody QueryStatisticsDto queryFeeStatisticsDto);
 
    /**
     * 查询欠费金额
     *
     * @param queryStatisticsDto
     * @return
     */
    @RequestMapping(value = "/getOweFee", method = RequestMethod.POST)
    double getOweFee(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    /**
     * 查询当月应收
     *
     * @param queryStatisticsDto
     * @return
     */
    @RequestMapping(value = "/getCurReceivableFee", method = RequestMethod.POST)
    double getCurReceivableFee(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    @RequestMapping(value = "/getHisReceivedFee", method = RequestMethod.POST)
    double getHisReceivedFee(@RequestBody QueryStatisticsDto queryFeeStatisticsDto);
 
    @RequestMapping(value = "/getPreReceivedFee", method = RequestMethod.POST)
    double getPreReceivedFee(@RequestBody QueryStatisticsDto queryFeeStatisticsDto);
 
    @RequestMapping(value = "/getReceivedFee", method = RequestMethod.POST)
    double getReceivedFee(@RequestBody QueryStatisticsDto queryFeeStatisticsDto);
 
    /**
     * 欠费户数
     *
     * @param queryStatisticsDto
     * @return
     */
    @RequestMapping(value = "/getOweRoomCount", method = RequestMethod.POST)
    int getOweRoomCount(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    /**
     * 查询收费房屋数
     *
     * @param queryStatisticsDto
     * @return
     */
    @RequestMapping(value = "/getFeeRoomCount", method = RequestMethod.POST)
    long getFeeRoomCount(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    /**
     * 楼栋收费率信息统计
     *
     * @param queryStatisticsDto
     * @return
     */
    @RequestMapping(value = "/getFloorFeeSummary", method = RequestMethod.POST)
    List<Map> getFloorFeeSummary(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    /**
     * 费用项收费率统计
     *
     * @param queryStatisticsDto
     * @return
     */
    @RequestMapping(value = "/getConfigFeeSummary", method = RequestMethod.POST)
    List<Map> getConfigFeeSummary(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    @RequestMapping(value = "/getObjFeeSummaryCount", method = RequestMethod.POST)
    int getObjFeeSummaryCount(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    @RequestMapping(value = "/getObjFeeSummary", method = RequestMethod.POST)
    List<Map> getObjFeeSummary(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    /**
     * 业主明细表
     *
     * @param queryStatisticsDto
     * @return
     */
    @RequestMapping(value = "/getOwnerFeeSummary", method = RequestMethod.POST)
    List<Map> getOwnerFeeSummary(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    /**
     * 优惠费用
     *
     * @param queryStatisticsDto
     * @return
     */
    @RequestMapping(value = "/getDiscountFee", method = RequestMethod.POST)
    double getDiscountFee(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    /**
     * 滞纳金
     *
     * @param queryStatisticsDto
     * @return
     */
    @RequestMapping(value = "/getLateFee", method = RequestMethod.POST)
    double getLateFee(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    /**
     * 查询预存金额
     *
     * @param queryStatisticsDto
     * @return
     */
    @RequestMapping(value = "/getPrestoreAccount", method = RequestMethod.POST)
    double getPrestoreAccount(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    /**
     * 查询扣款金额
     *
     * @param queryStatisticsDto
     * @return
     */
    @RequestMapping(value = "/getWithholdAccount", method = RequestMethod.POST)
    double getWithholdAccount(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    /**
     * 查询临时车收入
     *
     * @param queryStatisticsDto
     * @return
     */
    @RequestMapping(value = "/getTempCarFee", method = RequestMethod.POST)
    double getTempCarFee(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    /**
     * 查询退款押金
     *
     * @param queryStatisticsDto
     * @return
     */
    @RequestMapping(value = "/geRefundDeposit", method = RequestMethod.POST)
    double geRefundDeposit(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    @RequestMapping(value = "/geRefundOrderCount", method = RequestMethod.POST)
    double geRefundOrderCount(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    @RequestMapping(value = "/geRefundFee", method = RequestMethod.POST)
    double geRefundFee(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    /**
     * 查询充电桩 充电金额
     *
     * @param queryStatisticsDto
     * @return
     */
    @RequestMapping(value = "/getChargeFee", method = RequestMethod.POST)
    double getChargeFee(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    /**
     * 查询楼栋实收统计
     *
     * @param queryStatisticsDto
     * @return
     */
    @RequestMapping(value = "/getReceivedFeeByFloor", method = RequestMethod.POST)
    List<Map> getReceivedFeeByFloor(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    @RequestMapping(value = "/getReceivedFeeByPrimeRate", method = RequestMethod.POST)
    List<Map> getReceivedFeeByPrimeRate(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    /**
     * 根据楼栋查询欠费信息
     *
     * @param queryStatisticsDto
     * @return
     */
    @RequestMapping(value = "/getOweFeeByFloor", method = RequestMethod.POST)
    List<Map> getOweFeeByFloor(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    @RequestMapping(value = "/getObjOweFee", method = RequestMethod.POST)
    List<Map> getObjOweFee(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    /**
     * 查询当日 或者当月已收房屋数
     * @param queryStatisticsDto
     * @return
     */
    @RequestMapping(value = "/getReceivedRoomCount", method = RequestMethod.POST)
    long getReceivedRoomCount(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    /**
     * 查询当日 或者当月已收金额
     * @param queryStatisticsDto
     * @return
     */
    @RequestMapping(value = "/getReceivedRoomAmount", method = RequestMethod.POST)
    double getReceivedRoomAmount(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    /**
     * 查询历史欠费 清缴户
     * @param queryStatisticsDto
     * @return
     */
    @RequestMapping(value = "/getHisOweReceivedRoomCount", method = RequestMethod.POST)
    long getHisOweReceivedRoomCount(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    @RequestMapping(value = "/getHisOweReceivedRoomAmount", method = RequestMethod.POST)
    double getHisOweReceivedRoomAmount(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    @RequestMapping(value = "/getObjReceivedFee", method = RequestMethod.POST)
    List<Map> getObjReceivedFee(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    @RequestMapping(value = "/getMonthReceivedDetailCount", method = RequestMethod.POST)
    long getMonthReceivedDetailCount(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    @RequestMapping(value = "/getMonthReceivedDetailInfo", method = RequestMethod.POST)
    List<Map> getMonthReceivedDetailInfo(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    @RequestMapping(value = "/getMonthOweDetailCount", method = RequestMethod.POST)
    long getMonthOweDetailCount(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    @RequestMapping(value = "/getMonthOweDetailInfo", method = RequestMethod.POST)
    List<Map> getMonthOweDetailInfo(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    @RequestMapping(value = "/getMonthOweDetailAmount", method = RequestMethod.POST)
    double getMonthOweDetailAmount(@RequestBody QueryStatisticsDto queryStatisticsDto);
 
    @RequestMapping(value = "/getMonthReceivedDetailAmount", method = RequestMethod.POST)
    double getMonthReceivedDetailAmount(@RequestBody QueryStatisticsDto queryStatisticsDto);
}