From 1e614b956aee691c34f4bd1e29f18ee2e896ba95 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期六, 24 七月 2021 12:40:25 +0800
Subject: [PATCH] 优化 代码编译报错问题
---
service-fee/src/main/java/com/java110/fee/bmo/feeDiscountRuleSpec/IComputeFeeDiscountBMO.java | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/service-fee/src/main/java/com/java110/fee/bmo/feeDiscountRuleSpec/IComputeFeeDiscountBMO.java b/service-fee/src/main/java/com/java110/fee/bmo/feeDiscountRuleSpec/IComputeFeeDiscountBMO.java
old mode 100644
new mode 100755
index b975652..d38e81e
--- a/service-fee/src/main/java/com/java110/fee/bmo/feeDiscountRuleSpec/IComputeFeeDiscountBMO.java
+++ b/service-fee/src/main/java/com/java110/fee/bmo/feeDiscountRuleSpec/IComputeFeeDiscountBMO.java
@@ -1,5 +1,8 @@
package com.java110.fee.bmo.feeDiscountRuleSpec;
+
import org.springframework.http.ResponseEntity;
+
+import java.text.ParseException;
public interface IComputeFeeDiscountBMO {
@@ -9,6 +12,6 @@
*
* @return
*/
- ResponseEntity<String> compute(String feeId, String communityId, double cycles, int page, int row);
+ ResponseEntity<String> compute(String feeId, String communityId, double cycles, String payerObjId, String payerObjType, String endTime, int page, int row) throws ParseException;
}
--
Gitblit v1.8.0