| | |
| | | package com.ruoyi.cwgl.mapper; |
| | | |
| | | import java.util.List; |
| | | |
| | | import com.ruoyi.cwgl.domain.ReceivableBillCustomerSummary; |
| | | import com.ruoyi.cwgl.domain.ReceivableBillManagement; |
| | | import com.ruoyi.cwgl.domain.vo.ReceivableBillAgingAnalysisVo; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | |
| | | |
| | |
| | | * @return 结果 |
| | | */ |
| | | public int deleteReceivableBillManagementByIds(Integer[] ids); |
| | | |
| | | /** |
| | | * 根据系统编号查询应收账单管理 |
| | | * |
| | | * @param systemNo 系统编号 |
| | | * @return 应收账单管理 |
| | | */ |
| | | public ReceivableBillManagement selectReceivableBillManagementBySystemNo(String systemNo); |
| | | |
| | | /** |
| | | * 查询应收账单客户汇总列表 |
| | | * |
| | | * @param receivableBillManagement 查询条件 |
| | | * @return 应收账单客户汇总列表 |
| | | */ |
| | | public List<ReceivableBillCustomerSummary> selectReceivableBillCustomerSummaryList(ReceivableBillManagement receivableBillManagement); |
| | | |
| | | /** |
| | | * 查询应收账单账龄分析列表 |
| | | * |
| | | * @param receivableBillManagement 查询条件 |
| | | * @return 应收账单账龄分析列表 |
| | | */ |
| | | public List<ReceivableBillAgingAnalysisVo> selectReceivableBillAgingAnalysisList(ReceivableBillManagement receivableBillManagement); |
| | | } |