⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 qx.java

📁 Hibernate中的映射例子
💻 JAVA
字号:
package test.otm.pojo;

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

public class Qx implements java.io.Serializable {

	// Fields

	private Integer qxid;
	private String qx;

	// Constructors

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

	/** minimal constructor */
	public Qx(Integer qxid) {
		this.qxid = qxid;
	}

	/** full constructor */
	public Qx(Integer qxid, String qx) {
		this.qxid = qxid;
		this.qx = qx;
	}

	// Property accessors

	public Integer getQxid() {
		return this.qxid;
	}

	public void setQxid(Integer qxid) {
		this.qxid = qxid;
	}

	public String getQx() {
		return this.qx;
	}

	public void setQx(String qx) {
		this.qx = qx;
	}

}

⌨️ 快捷键说明

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