Your Name
2023-08-26 7958f1dddb8a7f4e70d232b07a7703955ecedae0
service-fee/src/main/java/com/java110/fee/dao/IPayFeeDetailMonthServiceDao.java
@@ -11,7 +11,7 @@
 * 月缴费表组件内部之间使用,没有给外围系统提供服务能力
 * 月缴费表服务接口类,要求全部以字符串传输,方便微服务化
 * 新建客户,修改客户,删除客户,查询客户等功能
 *
 * <p>
 * Created by wuxw on 2016/12/27.
 */
public interface IPayFeeDetailMonthServiceDao {
@@ -19,6 +19,7 @@
    /**
     * 保存 月缴费表信息
     *
     * @param info
     * @throws DAOException DAO异常
     */
@@ -27,11 +28,10 @@
    int savePayFeeDetailMonthInfos(Map info);
    /**
     * 查询月缴费表信息(instance过程)
     * 根据bId 查询月缴费表信息
     *
     * @param info bId 信息
     * @return 月缴费表信息
     * @throws DAOException DAO异常
@@ -39,9 +39,9 @@
    List<Map> getPayFeeDetailMonthInfo(Map info) throws DAOException;
    /**
     * 修改月缴费表信息
     *
     * @param info 修改信息
     * @throws DAOException DAO异常
     */
@@ -61,10 +61,27 @@
    /**
     * 处理需要离散的 缴费记录
     *
     * @param info
     * @return
     */
    List<Map> getWaitDispersedFeeDetail(Map info);
    void deletePayFeeDetailMonthInfo(Map info);
    /**
     * 查询 月数据(供页面使用)
     *
     * @param info
     * @return
     */
    List<Map> queryPagePayFeeDetailMonths(Map info);
    /**
     * 查询 月数据总数(供页面使用)
     *
     * @param info
     * @return
     */
    int queryPagePayFeeDetailMonthsCount(Map info);
}