Просмотр исходного кода

优化按时间段缴费逻辑

Your Name лет назад: 2
Родитель
Сommit
a62345903f

+ 2 - 0
service-report/src/main/java/com/java110/report/api/ReportFeeMonthStatisticsApi.java

@@ -642,6 +642,7 @@ public class ReportFeeMonthStatisticsApi {
     public ResponseEntity<String> queryHuaningOweFeeDetail(@RequestParam(value = "communityId") String communityId,
                                                            @RequestParam(value = "year") int year,
                                                            @RequestParam(value = "month") int month,
+                                                           @RequestParam(value = "feeTypeCd", required = false) String feeTypeCd,
                                                            @RequestParam(value = "page") int page,
                                                            @RequestParam(value = "row") int row) {
         Map paramInfo = new HashMap();
@@ -650,6 +651,7 @@ public class ReportFeeMonthStatisticsApi {
         paramInfo.put("month", month);
         paramInfo.put("page", page);
         paramInfo.put("row", row);
+        paramInfo.put("feeTypeCd", feeTypeCd);
         paramInfo.put("startTime", DateUtil.getYear() + "-01-01");
         paramInfo.put("endTime", DateUtil.getNow(DateUtil.DATE_FORMATE_STRING_B));
         return getReportFeeMonthStatisticsBMOImpl.queryHuaningOweFeeDetail(paramInfo);