jd.java

来自「Hibernate中的映射例子」· Java 代码 · 共 51 行

JAVA
51
字号
package test.otm.pojo;

/**
 * Jd entity.
 * 
 * @author MyEclipse Persistence Tools
 */

public class Jd implements java.io.Serializable {

	// Fields

	private Integer jdid;
	private String jd;

	// Constructors

	/** default constructor */
	public Jd() {
	}

	/** minimal constructor */
	public Jd(Integer jdid) {
		this.jdid = jdid;
	}

	/** full constructor */
	public Jd(Integer jdid,String jd) {
		this.jdid = jdid;
		this.jd = jd;
	}

	// Property accessors

	public Integer getJdid() {
		return this.jdid;
	}

	public void setJdid(Integer jdid) {
		this.jdid = jdid;
	}

	public String getJd() {
		return this.jd;
	}

	public void setJd(String jd) {
		this.jd = jd;
	}

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?