enrollment.java
来自「一个web service的实例」· Java 代码 · 共 36 行
JAVA
36 行
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 + =
减小字号Ctrl + -
显示快捷键?