From 6a1a938712b321dc8c00d61dfcfa765b28fbb6a9 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期六, 16 一月 2021 17:57:12 +0800
Subject: [PATCH] 加入小区字段
---
service-fee/src/main/java/com/java110/fee/api/FeeDiscountApi.java | 9 +++++++--
1 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/service-fee/src/main/java/com/java110/fee/api/FeeDiscountApi.java b/service-fee/src/main/java/com/java110/fee/api/FeeDiscountApi.java
index 85ceddd..7f2c1d5 100644
--- a/service-fee/src/main/java/com/java110/fee/api/FeeDiscountApi.java
+++ b/service-fee/src/main/java/com/java110/fee/api/FeeDiscountApi.java
@@ -24,6 +24,8 @@
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
+import java.text.ParseException;
+
@RestController
@RequestMapping(value = "/feeDiscount")
@@ -179,9 +181,12 @@
public ResponseEntity<String> computeFeeDiscount(@RequestParam(value = "feeId") String feeId,
@RequestParam(value = "communityId") String communityId,
@RequestParam(value = "cycles") double cycles,
+ @RequestParam(value = "payerObjId") String payerObjId,
+ @RequestParam(value = "payerObjType") String payerObjType,
+ @RequestParam(value = "endTime") String endTime,
@RequestParam(value = "page") int page,
- @RequestParam(value = "row") int row) {
- return computeFeeDiscountBMOImpl.compute(feeId, communityId, cycles, page, row);
+ @RequestParam(value = "row") int row) throws ParseException {
+ return computeFeeDiscountBMOImpl.compute(feeId, communityId, cycles, payerObjId, payerObjType, endTime, page, row);
}
--
Gitblit v1.8.0