gradetable.java

来自「在线考试系统」· Java 代码 · 共 101 行

JAVA
101
字号
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.id = id;
		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 + =
减小字号Ctrl + -
显示快捷键?