From c8195a8a1c34b9fa8db9aa4dc340d4344044ce97 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期二, 29 六月 2021 20:52:03 +0800
Subject: [PATCH] Merge branch 'master' of http://git.homecommunity.cn/supervip/MicroCommunity

---
 java110-interface/src/main/java/com/java110/intf/acct/IAccountBondObjDetailInnerServiceSMO.java |   53 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 53 insertions(+), 0 deletions(-)

diff --git a/java110-interface/src/main/java/com/java110/intf/acct/IAccountBondObjDetailInnerServiceSMO.java b/java110-interface/src/main/java/com/java110/intf/acct/IAccountBondObjDetailInnerServiceSMO.java
new file mode 100644
index 0000000..a4bff5e
--- /dev/null
+++ b/java110-interface/src/main/java/com/java110/intf/acct/IAccountBondObjDetailInnerServiceSMO.java
@@ -0,0 +1,53 @@
+package com.java110.intf.acct;
+
+import com.java110.config.feign.FeignConfiguration;
+import com.java110.dto.accountBondObjDetail.AccountBondObjDetailDto;
+import com.java110.po.accountBondObjDetail.AccountBondObjDetailPo;
+import org.springframework.cloud.openfeign.FeignClient;
+import org.springframework.web.bind.annotation.RequestBody;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RequestMethod;
+
+import java.util.List;
+
+/**
+ * @ClassName IAccountBondObjDetailInnerServiceSMO
+ * @Description 淇濊瘉閲戞槑缁嗘帴鍙g被
+ * @Author wuxw
+ * @Date 2019/4/24 9:04
+ * @Version 1.0
+ * add by wuxw 2019/4/24
+ **/
+@FeignClient(name = "acct-service", configuration = {FeignConfiguration.class})
+@RequestMapping("/accountBondObjDetailApi")
+public interface IAccountBondObjDetailInnerServiceSMO {
+
+
+    @RequestMapping(value = "/saveAccountBondObjDetail", method = RequestMethod.POST)
+    public int saveAccountBondObjDetail(@RequestBody AccountBondObjDetailPo accountBondObjDetailPo);
+
+    @RequestMapping(value = "/updateAccountBondObjDetail", method = RequestMethod.POST)
+    public int updateAccountBondObjDetail(@RequestBody  AccountBondObjDetailPo accountBondObjDetailPo);
+
+    @RequestMapping(value = "/deleteAccountBondObjDetail", method = RequestMethod.POST)
+    public int deleteAccountBondObjDetail(@RequestBody  AccountBondObjDetailPo accountBondObjDetailPo);
+
+    /**
+     * <p>鏌ヨ灏忓尯妤间俊鎭�</p>
+     *
+     *
+     * @param accountBondObjDetailDto 鏁版嵁瀵硅薄鍒嗕韩
+     * @return AccountBondObjDetailDto 瀵硅薄鏁版嵁
+     */
+    @RequestMapping(value = "/queryAccountBondObjDetails", method = RequestMethod.POST)
+    List<AccountBondObjDetailDto> queryAccountBondObjDetails(@RequestBody AccountBondObjDetailDto accountBondObjDetailDto);
+
+    /**
+     * 鏌ヨ<p>灏忓尯妤�</p>鎬昏褰曟暟
+     *
+     * @param accountBondObjDetailDto 鏁版嵁瀵硅薄鍒嗕韩
+     * @return 灏忓尯涓嬬殑灏忓尯妤艰褰曟暟
+     */
+    @RequestMapping(value = "/queryAccountBondObjDetailsCount", method = RequestMethod.POST)
+    int queryAccountBondObjDetailsCount(@RequestBody AccountBondObjDetailDto accountBondObjDetailDto);
+}

--
Gitblit v1.8.0