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

📄 abstractadminer.java

📁 struts spring hibernate 自已写的
💻 JAVA
字号:
package com.hb.gf.hi;

/**
 * AbstractAdminer entity provides the base persistence definition of the
 * Adminer entity.
 * 
 * @author MyEclipse Persistence Tools
 */

public abstract class AbstractAdminer implements java.io.Serializable {

	// Fields

	private Integer id;
	private String adminer;
	private String pword;
	private Integer high;

	// Constructors

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

	/** minimal constructor */
	public AbstractAdminer(Integer id) {
		this.id = id;
	}

	/** full constructor */
	public AbstractAdminer(Integer id, String adminer, String pword,
			Integer high) {
		this.id = id;
		this.adminer = adminer;
		this.pword = pword;
		this.high = high;
	}

	// Property accessors

	public Integer getId() {
		return this.id;
	}

	public void setId(Integer id) {
		this.id = id;
	}

	public String getAdminer() {
		return this.adminer;
	}

	public void setAdminer(String adminer) {
		this.adminer = adminer;
	}

	public String getPword() {
		return this.pword;
	}

	public void setPword(String pword) {
		this.pword = pword;
	}

	public Integer getHigh() {
		return this.high;
	}

	public void setHigh(Integer high) {
		this.high = high;
	}

}

⌨️ 快捷键说明

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