refactor: 移除ExamSchedule接口中的roomName属性

由于roomName属性不再用于前端渲染流程,因此从ExamSchedule接口中移除该属性以简化数据结构并保持一致性。
This commit is contained in:
hello8693 2024-08-05 18:07:47 +08:00
parent 5ff25e3259
commit 4153032537

View File

@ -6,7 +6,6 @@ export interface TimeSlot {
export interface ExamSchedule { export interface ExamSchedule {
examName: string; examName: string;
roomName: string;
message: string; message: string;
examInfos: TimeSlot[]; examInfos: TimeSlot[];
} }