jiangping
2024-06-27 6342654aed280b2b164a12878a61c4a58fb5903d
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));
    }
}