| | |
| | | package com.ruoyi.purchase.service; |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.purchase.dto.PaymentLedgerDto; |
| | | import com.ruoyi.purchase.dto.PaymentRegistrationDto; |
| | | import com.ruoyi.purchase.pojo.PaymentRegistration; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * 付款登记Service接口 |
| | |
| | | * @return 结果 |
| | | */ |
| | | PaymentRegistration selectPaymentRegistrationByPurchaseId(Long purchaseId); |
| | | |
| | | IPage<Map<String, Object>> selectPaymentLedgerList(PaymentLedgerDto paymentLedgerDto, Page page, |
| | | Integer detailPageNum, |
| | | Integer detailPageSize); |
| | | |
| | | Map<String, BigDecimal> paymentMonthList(); |
| | | } |