v3.5.6版本迭代
CI / verify (pull_request) Has been cancelled

This commit is contained in:
2026-08-23 16:41:22 +08:00
parent 608e3e5ec5
commit 7e12eb3ca6
33 changed files with 1537 additions and 278 deletions
@@ -31,6 +31,7 @@ import {
UpdateDevPlanTaskDto,
UpdateDevPlanVersionDto,
DevPlanTaskBatchUpdateDto,
DevPlanTaskExportDto,
} from './dto/dev-plan.dto';
@Controller('admin/dev-plan')
@@ -98,6 +99,11 @@ export class AdminDevPlanController {
return this.service.batchUpdateTasks(body);
}
@Post('tasks/export')
exportTasks(@Body() body: DevPlanTaskExportDto) {
return this.service.exportTasks(body);
}
@Get('versions')
listVersions(
@Query('status') status?: string,