maven
2025-10-14 cf6b1cf6fa8f7784c6d7c64b7326d4662bc3d4b3
main-business/src/main/java/com/ruoyi/business/controller/DuePayableController.java
@@ -32,8 +32,8 @@
        return R.ok(duePayableService.addDuePayable(duePayableDto));
    }
    @GetMapping("/list")
    public R<IPage<DuePayableVo>> list(Page<DuePayable> page, SearchDuePurchaseVo vo) {
        return R.ok(duePayableService.selectPayableList(page, vo));
    @PostMapping("/list")
    public R<IPage<DuePayableVo>> list(@RequestBody SearchDuePurchaseVo vo) {
        return R.ok(duePayableService.selectPayableList(new Page<>(vo.getCurrent(),vo.getSize()), vo));
    }
}