UserSchoolInfo

@Serializable
data class UserSchoolInfo(val userSchoolId: Int? = null, val className: String? = null, val enrollmentYear: Int? = null, val graduationYear: Int? = null, val isCurrent: Int? = null, val isPublic: Int? = null, val schoolId: Int, val schoolName: 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(userSchoolId: Int? = null, className: String? = null, enrollmentYear: Int? = null, graduationYear: Int? = null, isCurrent: Int? = null, isPublic: Int? = null, schoolId: Int, schoolName: String, shortName: String? = null, location: String? = null, type: String? = null, logoUrl: String? = null, studentCount: Int? = null)

Properties

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

班级名称

Link copied to clipboard
@SerialName(value = "enrollment_year")
val enrollmentYear: Int?

入学年份

Link copied to clipboard
@SerialName(value = "graduation_year")
val graduationYear: Int?

毕业年份

Link copied to clipboard
@SerialName(value = "is_current")
val isCurrent: Int?

是否在读(1=在读)

Link copied to clipboard
@SerialName(value = "is_public")
val isPublic: Int?

是否公开(1=公开)

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 = "school_id")
val schoolId: Int

学校 ID

Link copied to clipboard
@SerialName(value = "school_name")
val schoolName: 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?

学校类型

Link copied to clipboard
@SerialName(value = "user_school_id")
val userSchoolId: Int?

用户学校关联 ID