v4.0.11HQ后端优化(快链、账单日等)
CI / verify (pull_request) Waiting to run

This commit is contained in:
2026-09-02 15:45:12 +08:00
parent 1000b489a0
commit 6880b5daf4
31 changed files with 1014 additions and 402 deletions
@@ -107,11 +107,13 @@ export class AdminDevPlanController {
@Get('versions')
listVersions(
@Query('status') status?: string,
@Query('keyword') keyword?: string,
@Query('page') page?: string,
@Query('pageSize') pageSize?: string,
) {
return this.service.listVersions({
status,
keyword,
page: page ? Number(page) : undefined,
pageSize: pageSize ? Number(pageSize) : undefined,
});