All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openurp.edu.base.model.Classroom.scala Maven / Gradle / Ivy

There is a newer version: 0.18.1
Show newest version
/*
 * OpenURP, Agile University Resource Planning Solution
 *
 * Copyright (c) 2014-2015, OpenURP Software.
 *
 * OpenURP 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.
 *
 * OpenURP 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 OpenURP.  If not, see .
 */
package org.openurp.edu.base.model

import org.beangle.data.model.{ LongId, Named, Updated }
import org.openurp.base.model.Room
import org.openurp.code.edu.model.ClassroomType
import org.beangle.data.model.Coded
/**
 * 教室
 */
class Classroom extends LongId with Named with Coded with Updated {

  /**项目*/
  var project: Project = _
  /**
   * 房间
   * 可以为空,表示虚拟房间
   */
  var room: Room = _

  /**
   * 英文名
   */
  var enName: String = _

  /**
   * 简称
   */
  var shortName: String = _

  /**
   * 教室类型
   */
  var roomType: ClassroomType = _

  /**
   * 上课容量
   */
  var courseCapacity: Int = _

  /**
   * 考试容量
   */
  var examCapacity: Int = _

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy