24 lines
550 B
Java
24 lines
550 B
Java
package com.magistr.app.dto;
|
|
|
|
import com.magistr.app.model.ScheduleParity;
|
|
|
|
public record ScheduleRuleSlotDto(
|
|
Long id,
|
|
Integer dayOfWeek,
|
|
String dayName,
|
|
ScheduleParity parity,
|
|
Long timeSlotId,
|
|
Integer timeSlotOrder,
|
|
String timeSlotLabel,
|
|
Long subgroupId,
|
|
String subgroupName,
|
|
Long teacherId,
|
|
String teacherName,
|
|
Long classroomId,
|
|
String classroomName,
|
|
Long lessonTypeId,
|
|
String lessonTypeName,
|
|
String lessonFormat
|
|
) {
|
|
}
|