📄 courseitem.java
字号:
package day21ex.course;
import java.sql.*;
import javax.naming.*;
import javax.ejb.*;
import java.util.*;
import java.rmi.RemoteException;
import javax.naming.*;
public class CourseItem implements java.io.Serializable {
private String courseId;
private String name;
private double fee;
public CourseItem(String courseId, String name, double fee) {
this.courseId = courseId;
this.fee = fee;
this.name = name;
}
public String getCourseId(){
return courseId;
}
public void setCourseId(String courseId){
this.courseId=courseId;
}
public String getName(){
return name;
}
public void setName(String name){
this.name=name;
}
public double getFee(){
return fee;
}
public void setFee(double fee){
this.fee=fee;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -