abstractadminer.java

来自「struts spring hibernate 自已写的」· Java 代码 · 共 73 行

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