k94314517
2025-01-03 f1a64d400938d12478161b95aed0c38c28141110
server/platform/src/main/java/com/doumee/api/business/ApplyChangeController.java
@@ -154,4 +154,11 @@
    public ApiResponse<ApplyChange> findById(@PathVariable Integer id) {
        return ApiResponse.success(applyChangeService.findDetail(id));
    }
    @ApiOperation("查询月度统计数据")
    @PostMapping("/monthList")
    @RequiresPermissions("business:applychange:query")
    public ApiResponse<List<ApplyChange>> findPage (@RequestBody ApplyChange pageWrap) {
        return ApiResponse.success(applyChangeService.monthTotalList(pageWrap));
    }
}