SchoolInfo

@Serializable
data class SchoolInfo(val id: Int, val name: String, val shortName: String? = null, val location: String? = null, val type: String? = null, val logoUrl: String? = null, val studentCount: Int? = null)

学校基本信息。

Constructors

Link copied to clipboard
constructor(id: Int, name: String, shortName: String? = null, location: String? = null, type: String? = null, logoUrl: String? = null, studentCount: Int? = null)

Properties

Link copied to clipboard
@SerialName(value = "id")
val id: Int

学校 ID

Link copied to clipboard
@SerialName(value = "location")
val location: String?

学校位置

Link copied to clipboard
@SerialName(value = "logo_url")
val logoUrl: String?

学校 Logo URL

Link copied to clipboard
@SerialName(value = "name")
val name: String

学校全称

Link copied to clipboard
@SerialName(value = "short_name")
val shortName: String?

学校简称

Link copied to clipboard
@SerialName(value = "student_count")
val studentCount: Int?

学生数量

Link copied to clipboard
@SerialName(value = "type")
val type: String?

学校类型