renkang
2025-01-09 f68b6f735eb1b0f3702022d3a25510fcd21d1cf8
server/visits/dmvisit_service/src/main/java/com/doumee/service/business/YwContractBillService.java
@@ -1,8 +1,11 @@
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.model.YwContractBill;
import com.doumee.dao.business.vo.YwContractBillDataVO;
import java.util.List;
/**
@@ -25,7 +28,7 @@
     *
     * @param id 主键
     */
    void deleteById(Integer id);
    void deleteById(Integer id, LoginUserInfo user);
    /**
     * 删除
@@ -39,7 +42,7 @@
     *
     * @param ids 主键集
     */
    void deleteByIdInBatch(List<Integer> ids);
    void deleteByIdInBatch(List<Integer> ids, LoginUserInfo user);
    /**
     * 主键更新
@@ -94,4 +97,16 @@
     * @return long
     */
    long count(YwContractBill ywContractBill);
    YwContractBill getDetail(Integer id);
    /**
     * 处理账单编号
     */
    void dealDayBillCode();
    List<YwContractBill> getCanBackBill(YwContractBill model);
    YwContractBillDataVO getWaitDealList(Integer contractId);
}