From a2299a6d4a6f99e9c11132138f5d3e9ec68f03ea Mon Sep 17 00:00:00 2001
From: jiangping <jp@doumee.com>
Date: 星期五, 06 六月 2025 19:19:34 +0800
Subject: [PATCH] 开发更新

---
 server/visits/dmvisit_service/src/main/java/com/doumee/service/business/YwContractBillService.java |   36 ++++++++++++++++++++++++++++++++++--
 1 files changed, 34 insertions(+), 2 deletions(-)

diff --git a/server/visits/dmvisit_service/src/main/java/com/doumee/service/business/YwContractBillService.java b/server/visits/dmvisit_service/src/main/java/com/doumee/service/business/YwContractBillService.java
index 4fbdf3e..ef6208f 100644
--- a/server/visits/dmvisit_service/src/main/java/com/doumee/service/business/YwContractBillService.java
+++ b/server/visits/dmvisit_service/src/main/java/com/doumee/service/business/YwContractBillService.java
@@ -1,8 +1,15 @@
 package com.doumee.service.business;
 
+import com.doumee.core.model.LoginUserInfo;
 import com.doumee.core.model.PageData;
 import com.doumee.core.model.PageWrap;
+import com.doumee.dao.business.dto.YwSmsEmailBillCallDTO;
 import com.doumee.dao.business.model.YwContractBill;
+import com.doumee.dao.business.vo.YwContractBillCallDataVO;
+import com.doumee.dao.business.vo.YwContractBillDataVO;
+import com.doumee.service.business.impl.SmsEmailServiceImpl;
+
+import javax.servlet.http.HttpServletResponse;
 import java.util.List;
 
 /**
@@ -25,7 +32,7 @@
      *
      * @param id 涓婚敭
      */
-    void deleteById(Integer id);
+    void deleteById(Integer id, LoginUserInfo user);
 
     /**
      * 鍒犻櫎
@@ -39,7 +46,7 @@
      *
      * @param ids 涓婚敭闆�
      */
-    void deleteByIdInBatch(List<Integer> ids);
+    void deleteByIdInBatch(List<Integer> ids, LoginUserInfo user);
 
     /**
      * 涓婚敭鏇存柊
@@ -88,10 +95,35 @@
     PageData<YwContractBill> findPage(PageWrap<YwContractBill> pageWrap);
 
     /**
+     * 閫炬湡璐﹀崟鍒嗛〉
+     * @param pageWrap
+     * @return
+     */
+    PageData<YwContractBill> findPageForOverdue(PageWrap<YwContractBill> pageWrap);
+
+    /**
      * 鏉′欢缁熻
      *
      * @param ywContractBill 瀹炰綋瀵硅薄
      * @return long
      */
     long count(YwContractBill ywContractBill);
+
+    YwContractBill getDetail(Integer id);
+
+    /**
+     * 澶勭悊璐﹀崟缂栧彿
+     */
+    void dealDayBillCode();
+
+    List<YwContractBill> getCanBackBill(YwContractBill model);
+
+    YwContractBillDataVO getWaitDealList(Integer contractId);
+
+    List<YwContractBillCallDataVO> getNoticeCustomerData(List<Integer> billIds);
+
+    void downloadCallFeeDoc(List<Integer> billIds, LoginUserInfo loginUserInfo, HttpServletResponse response);
+
+    void sendSmsEmail(List<YwSmsEmailBillCallDTO> ywSmsEmailBillCallDTOList, SmsEmailServiceImpl smsEmailService, LoginUserInfo loginUserInfo);
+
 }

--
Gitblit v1.9.3