罗明文
2 天以前 aa512ff5fc428fbee046d6bc0761c3675023769e
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? = ""
)