
org.openurp.edu.exempt.flow.ExternExemptApply.scala Maven / Gradle / Ivy
/*
* Copyright (C) 2014, The OpenURP Software.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see .
*/
package org.openurp.edu.exempt.flow
import org.beangle.data.model.LongId
import org.beangle.data.model.annotation.flow
import org.beangle.data.model.pojo.Updated
import org.openurp.base.model.{AuditStatus, Semester}
import org.openurp.base.std.model.ExternStudent
/** 外校成绩免修申请
*/
@flow
class ExternExemptApply extends LongId with Updated {
/** 学年学期 */
var semester: Semester = _
/** 外部学习经历 */
var externStudent: ExternStudent = _
/** 成绩单附件路径 */
var transcriptPath: Option[String] = None
/** 审核状态 */
var status: AuditStatus = AuditStatus.Draft
/** 审核意见 */
var auditOpinion: Option[String] = None
/** 申请冲抵的外校课程学分总计 */
var credits: Float = _
/** 冲抵本校课程的学分总计 */
var exemptionCredits: Float = _
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy