org.openurp.edu.student.model.Examinee.scala Maven / Gradle / Ivy
/*
* OpenURP, Agile University Resource Planning Solution.
*
* Copyright © 2014, The OpenURP Software.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful.
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package org.openurp.edu.student.model
import java.time.LocalDate
import org.openurp.code.geo.model.Division
import org.beangle.commons.collection.Collections
import org.openurp.edu.base.model.Student
import org.beangle.data.model.LongId
/**
* 考生信息
*/
class Examinee extends LongId {
/**学生*/
var std: Student = _
/** 考生号 */
var code: String = _
/** 准考证号 */
var examNo: Option[String] = None
/** 生源地 */
var originDivision: Option[Division] = None
/** 毕业学校编号 */
var schoolNo: Option[String] = None
/** 毕业学校名称 */
var schoolName: Option[String] = None
/** 毕业日期 */
var graduateOn: Option[LocalDate] = None
/** 招生录取总分 */
var score: Option[Float] = None
/** 各科分数 科目->浮点数 */
var scores = Collections.newMap[Integer, java.lang.Float]
/** 报考省市 */
var province: Option[String] = None
/** 是否预科生 */
var preparatory: Boolean = _
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy