📄 abstractadminer.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 + -