?? gradetable.java
字號:
package exam.dao;
/**
* GradeTable entity. @author MyEclipse Persistence Tools
*/
public class GradeTable implements java.io.Serializable {
// Fields
private GradeTableId id;
private String selectonepoint;
private String selectmanypoint;
private String oneaskpoint;
private String manyaskpoint;
private String combinationpoint;
private String otherpoint;
// Constructors
/** default constructor */
public GradeTable() {
}
/** minimal constructor */
public GradeTable(GradeTableId id) {
this.id = id;
}
/** full constructor */
public GradeTable(GradeTableId id, String selectonepoint,
String selectmanypoint, String oneaskpoint, String manyaskpoint,
String combinationpoint, String otherpoint) {
this.selectonepoint = selectonepoint;
this.selectmanypoint = selectmanypoint;
this.oneaskpoint = oneaskpoint;
this.manyaskpoint = manyaskpoint;
this.combinationpoint = combinationpoint;
this.otherpoint = otherpoint;
}
// Property accessors
public GradeTableId getId() {
return this.id;
}
public void setId(GradeTableId id) {
this.id = id;
}
public String getSelectonepoint() {
return this.selectonepoint;
}
public void setSelectonepoint(String selectonepoint) {
this.selectonepoint = selectonepoint;
}
public String getSelectmanypoint() {
return this.selectmanypoint;
}
public void setSelectmanypoint(String selectmanypoint) {
this.selectmanypoint = selectmanypoint;
}
public String getOneaskpoint() {
return this.oneaskpoint;
}
public void setOneaskpoint(String oneaskpoint) {
this.oneaskpoint = oneaskpoint;
}
public String getManyaskpoint() {
return this.manyaskpoint;
}
public void setManyaskpoint(String manyaskpoint) {
this.manyaskpoint = manyaskpoint;
}
public String getCombinationpoint() {
return this.combinationpoint;
}
public void setCombinationpoint(String combinationpoint) {
this.combinationpoint = combinationpoint;
}
public String getOtherpoint() {
return this.otherpoint;
}
public void setOtherpoint(String otherpoint) {
this.otherpoint = otherpoint;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -