From eb01186c8afb51906588299afa1443a3afb821dd Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期六, 19 十一月 2022 23:07:52 +0800
Subject: [PATCH] 加入物业优惠券
---
java110-interface/src/main/java/com/java110/intf/acct/IAccountWithdrawalApplyInnerServiceSMO.java | 21 ++++++++++++++++++++-
1 files changed, 20 insertions(+), 1 deletions(-)
diff --git a/java110-interface/src/main/java/com/java110/intf/acct/IAccountWithdrawalApplyInnerServiceSMO.java b/java110-interface/src/main/java/com/java110/intf/acct/IAccountWithdrawalApplyInnerServiceSMO.java
index e8f14d6..863363c 100644
--- a/java110-interface/src/main/java/com/java110/intf/acct/IAccountWithdrawalApplyInnerServiceSMO.java
+++ b/java110-interface/src/main/java/com/java110/intf/acct/IAccountWithdrawalApplyInnerServiceSMO.java
@@ -7,6 +7,7 @@
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
+import org.springframework.web.bind.annotation.RequestParam;
import java.util.List;
@@ -18,7 +19,7 @@
* @Version 1.0
* add by wuxw 2019/4/24
**/
-@FeignClient(name = "community-service", configuration = {FeignConfiguration.class})
+@FeignClient(name = "${java110.community-service}", configuration = {FeignConfiguration.class})
@RequestMapping("/accountWithdrawalApplyApi")
public interface IAccountWithdrawalApplyInnerServiceSMO {
@@ -50,4 +51,22 @@
*/
@RequestMapping(value = "/queryAccountWithdrawalApplysCount", method = RequestMethod.POST)
int queryAccountWithdrawalApplysCount(@RequestBody AccountWithdrawalApplyDto accountWithdrawalApplyDto);
+
+ /**
+ * <p>鏌ヨ灏忓尯妤间俊鎭�</p>
+ *
+ *
+ * @param states 鏁版嵁瀵硅薄鍒嗕韩
+ * @return AccountWithdrawalApplyDto 瀵硅薄鏁版嵁
+ */
+ @RequestMapping(value = "/listStateWithdrawalApplys", method = RequestMethod.POST)
+ List<AccountWithdrawalApplyDto> listStateWithdrawalApplys(@RequestParam String [] states);
+ /**
+ * 鏌ヨ<p>灏忓尯妤�</p>鎬昏褰曟暟
+ *
+ * @param states 鏁版嵁瀵硅薄鍒嗕韩
+ * @return 灏忓尯涓嬬殑灏忓尯妤艰褰曟暟
+ */
+ @RequestMapping(value = "/listStateWithdrawalApplysCount", method = RequestMethod.POST)
+ int listStateWithdrawalApplysCount(@RequestParam String [] states);
}
--
Gitblit v1.8.0