src/main/java/com/ruoyi/purchase/controller/PaymentRegistrationController.java
@@ -138,4 +138,15 @@ List<PaymentHistoryRecordVo> paymentRecordList = paymentRegistrationService.getPaymentRecordList(supplierId); return success(paymentRecordList); } /** * 查询付款登记列表 * * @param paymentRegistrationDto 付款登记 * @return 付款登记集合 */ @GetMapping("/paymentHistoryListPage") public IPage<PaymentRegistrationDto> paymentHistoryListPage(Page page, PaymentRegistrationDto paymentRegistrationDto) { return paymentRegistrationService.paymentHistoryListPage(page,paymentRegistrationDto); } }