knowledgepoint.java
来自「一个在线学习系统的服务端SERVLET程序」· Java 代码 · 共 46 行
JAVA
46 行
package eols.bean.test;
/**
* <p>Title: The knowledge point of courses</p>
* <p>Description: It is used to wrap the knowledge point which questions belong to</p>
* <p>Copyright: Copyright (c) 2005</p>
* <p>Company: </p>
* @author Fasheng Qiu
* @version 1.0
*/
public class KnowledgePoint {
private long id; // Id of the knowledge point
private String name; // Name of the knowledge point
private String description; // Description of the knowledge point
public KnowledgePoint(){}
public KnowledgePoint(long id) {
this.id = id;
}
public String getDescription() {
return description;
}
public long getId() {
return id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public void setId(long id) {
this.id = id;
}
public void setDescription(String description) {
this.description = description;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?