gradeim.java
来自「一个不错的bbs论坛系统.对初学者很有帮助」· Java 代码 · 共 46 行
JAVA
46 行
package com.yhbbs.user.bean;
import com.yhbbs.user.itface.bean.Grade;
/**
* <p>Title:论坛用户等级Bean</p>
* <br><b>WebSite: www.yyhweb.com</b>
* <br><b>CopyRight: yyhweb[由由华网]</b>
* @author stephen
* @version YHBBS-2.0
*/
public class GradeIm implements Grade {
private int gid = 0;
private String name = "";
private int leastpost = 0;
private int usertype = 0;
public int getGid() {
return gid;
}
public void setGid(int gid) {
this.gid = gid;
}
public int getLeastpost() {
return leastpost;
}
public void setLeastpost(int leastpost) {
this.leastpost = leastpost;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getUsertype() {
return usertype;
}
public void setUsertype(int usertype) {
this.usertype = usertype;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?