罗明文
2024-06-16 9673bcd57c6100ad9fdfbee728ef078104511fc1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.dollearn.student.network.entity
 
data class LiveSchedule(
    val courseId: Int = 0,
    val courseName: String = "",
    val courseType: Int = 0,
    val id: Int = 0,
    val liveVideoID: Int = 0,
    val indexNum: Int = 0,
    val scheduleDay: String = "",
    val scheduleId: Int = 0,
    val minimumNumber: Int = 0,
    val scheduleState: Int = 0,
    val scheduleTime: String = "",
    val schoolHour: Int = 0,
    val teacherAvatar: String = "",
    val teacherId: Int = 0,
    val teacherName: String = "",
    val videoName: String = "",
    val subjectName: String = "",
    val videoUrl: String? = ""
)