fix: use real name and phone from frontend when importing students

This commit is contained in:
2026-07-10 09:50:18 +08:00
parent b261ec5930
commit 31bcd15189
2 changed files with 18 additions and 13 deletions

View File

@@ -94,7 +94,7 @@ export class ClassesController {
@Param('id') id: string,
@Body() dto: BatchImportStudentsDto,
) {
return this.service.batchImportStudents(+id, dto.dingUserIds);
return this.service.batchImportStudents(+id, dto.users);
}
/** 归档班级 */