这是一个学校老师和学生的管理系统,程序比较简单,但是几乎所有功能都可以实现,如果想要用,只要再添加一些东西就可以了.

源代码在线查看: classes.java

软件大小: 11316 K
上传用户: tiger452
关键词: 管理系统 程序 比较
下载地址: 免注册下载 普通下载 VIP

相关代码

				/**
				 *******************************************************************************
				 * Classes.java
				 *
				 * (c) Copyright 2008 Hewlett-Packard Development Company, L.P.
				 *
				 *
				 *  System Name : Students Management System
				 *
				 *  The file includes a class and the class includes the class information.
				 *
				 *  2009-4-29    1.00    zhangliy
				 *******************************************************************************
				 */
				package com.hp.eds.zhangliyuan.stuMan.entity;
				
				/**
				 * The class includes the class information.
				 * 
				 * @author zhangliy
				 * @version 1.0
				 */
				public class Classes {
					private String id;
				
					private String teaID;
				
					private String courID;
				
					private String roomID;
				
					private String time;
				
					/**
					 * courID of get
					 *
					 * @return courID
					 */
					public String getCourID() {
						return courID;
					}
				
					/**
					 * courID of set
					 *
					 * @param courID set {bare_field_name}
					 */
					public void setCourID(String courID) {
						this.courID = courID;
					}
				
					/**
					 * id of get
					 *
					 * @return id
					 */
					public String getId() {
						return id;
					}
				
					/**
					 * id of set
					 *
					 * @param id set {bare_field_name}
					 */
					public void setId(String id) {
						this.id = id;
					}
				
					/**
					 * roomID of get
					 *
					 * @return roomID
					 */
					public String getRoomID() {
						return roomID;
					}
				
					/**
					 * roomID of set
					 *
					 * @param roomID set {bare_field_name}
					 */
					public void setRoomID(String roomID) {
						this.roomID = roomID;
					}
				
					/**
					 * teaID of get
					 *
					 * @return teaID
					 */
					public String getTeaID() {
						return teaID;
					}
				
					/**
					 * teaID of set
					 *
					 * @param teaID set {bare_field_name}
					 */
					public void setTeaID(String teaID) {
						this.teaID = teaID;
					}
				
					/**
					 * time of get
					 *
					 * @return time
					 */
					public String getTime() {
						return time;
					}
				
					/**
					 * time of set
					 *
					 * @param time set {bare_field_name}
					 */
					public void setTime(String time) {
						this.time = time;
					}
				
					
				}
							

相关资源