⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 enrollment.java

📁 一个web service的实例
💻 JAVA
字号:
package com.ibm.ta.webservice;

import java.io.Serializable;

public class Enrollment implements Serializable {
	private long studentID;

	private long courseID;

	public Enrollment() {
		this.studentID = 0;
		this.courseID = 0;
	}

	public Enrollment(long studentID, long courseID) {
		this.studentID = studentID;
		this.courseID = courseID;
	}

	public long getCourseID() {
		return courseID;
	}

	public void setCourseID(long courseID) {
		this.courseID = courseID;
	}

	public long getStudentID() {
		return studentID;
	}

	public void setStudentID(long studentID) {
		this.studentID = studentID;
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -