From 31ac63cdcac3be0103b5e518f4a81eed44843eab Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期三, 03 六月 2020 16:13:38 +0800
Subject: [PATCH] 优化侦听启动bug

---
 java110-core/src/main/java/com/java110/core/smo/fee/IFeeInnerServiceSMO.java |   41 ++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 40 insertions(+), 1 deletions(-)

diff --git a/java110-core/src/main/java/com/java110/core/smo/fee/IFeeInnerServiceSMO.java b/java110-core/src/main/java/com/java110/core/smo/fee/IFeeInnerServiceSMO.java
index 0007af2..1785a90 100644
--- a/java110-core/src/main/java/com/java110/core/smo/fee/IFeeInnerServiceSMO.java
+++ b/java110-core/src/main/java/com/java110/core/smo/fee/IFeeInnerServiceSMO.java
@@ -1,7 +1,10 @@
 package com.java110.core.smo.fee;
 
 import com.java110.core.feign.FeignConfiguration;
+import com.java110.dto.fee.BillDto;
+import com.java110.dto.fee.BillOweFeeDto;
 import com.java110.dto.fee.FeeDto;
+import com.java110.utils.util.BeanConvertUtil;
 import org.springframework.cloud.openfeign.FeignClient;
 import org.springframework.web.bind.annotation.RequestBody;
 import org.springframework.web.bind.annotation.RequestMapping;
@@ -24,7 +27,6 @@
     /**
      * <p>鏌ヨ灏忓尯妤间俊鎭�</p>
      *
-     *
      * @param feeDto 鏁版嵁瀵硅薄鍒嗕韩
      * @return FeeDto 瀵硅薄鏁版嵁
      */
@@ -39,4 +41,41 @@
      */
     @RequestMapping(value = "/queryFeesCount", method = RequestMethod.POST)
     int queryFeesCount(@RequestBody FeeDto feeDto);
+
+
+    /**
+     * 鏌ヨ 璐︽湡淇℃伅 鎬绘暟
+     *
+     * @param billDto 鏁版嵁瀵硅薄鍒嗕韩
+     * @return 灏忓尯涓嬬殑灏忓尯妤艰褰曟暟
+     */
+    @RequestMapping(value = "/queryBillCount", method = RequestMethod.POST)
+    public int queryBillCount(@RequestBody BillDto billDto);
+
+    /**
+     * 鏌ヨ 璐︽湡淇℃伅
+     *
+     * @param billDto 鏁版嵁瀵硅薄鍒嗕韩
+     * @return 灏忓尯涓嬬殑灏忓尯妤艰褰曟暟
+     */
+    @RequestMapping(value = "/queryBills", method = RequestMethod.POST)
+    public List<BillDto> queryBills(@RequestBody BillDto billDto);
+
+    /**
+     * 鏌ヨ 娆犺垂鏁伴噺
+     *
+     * @param billDto 鏁版嵁瀵硅薄鍒嗕韩
+     * @return 灏忓尯涓嬬殑灏忓尯妤艰褰曟暟
+     */
+    @RequestMapping(value = "/queryBillOweFeeCount", method = RequestMethod.POST)
+    public int queryBillOweFeeCount(@RequestBody BillOweFeeDto billDto);
+
+    /**
+     * 鏌ヨ 娆犺垂淇℃伅
+     *
+     * @param billDto 鏁版嵁瀵硅薄鍒嗕韩
+     * @return 灏忓尯涓嬬殑灏忓尯妤艰褰曟暟
+     */
+    @RequestMapping(value = "/queryBillOweFees", method = RequestMethod.POST)
+    public List<BillOweFeeDto> queryBillOweFees(@RequestBody BillOweFeeDto billDto);
 }

--
Gitblit v1.8.0