| | |
| | | import com.ruoyi.sales.dto.InvoiceLedgerDto; |
| | | import com.ruoyi.sales.dto.ReceiptPaymentDto; |
| | | import com.ruoyi.sales.pojo.ReceiptPayment; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | public interface ReceiptPaymentService { |
| | | |
| | |
| | | * @return |
| | | */ |
| | | InvoiceLedgerDto invoiceInfo(Integer id); |
| | | |
| | | Map<String,BigDecimal> getAmountMouth(); |
| | | |
| | | /** |
| | | * 查询回款记录 |
| | | */ |
| | | List<ReceiptPaymentDto> receiptPaymentHistoryList(ReceiptPaymentDto receiptPaymentDto); |
| | | |
| | | /** |
| | | * 查询回款记录分页 |
| | | */ |
| | | IPage<ReceiptPaymentDto> receiptPaymentHistoryListPage(Page page, ReceiptPaymentDto receiptPaymentDto); |
| | | } |