From 6543cd42661e2f55b28bdc354022a57885d549de Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期四, 04 三月 2021 09:19:49 +0800
Subject: [PATCH] 优化公摊问题
---
service-fee/src/main/java/com/java110/fee/bmo/feeDiscountRuleSpec/IComputeFeeDiscountBMO.java | 9 +++++----
1 files changed, 5 insertions(+), 4 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
index b09887d..d38e81e 100644
--- 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,16 +1,17 @@
package com.java110.fee.bmo.feeDiscountRuleSpec;
-import com.java110.dto.feeDiscountRuleSpec.FeeDiscountRuleSpecDto;
+
import org.springframework.http.ResponseEntity;
-public interface IComputeFeeDiscountBMO {
+import java.text.ParseException;
+public interface IComputeFeeDiscountBMO {
/**
* 鏌ヨ鎶樻墸瑙勫垯閰嶇疆
* add by wuxw
+ *
* @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