📄 gradeim.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -