📄 usersessionim.java
字号:
package com.yhbbs.user.bean;
import com.yhbbs.user.itface.bean.UserSession;
/**
* <p>Title:论坛在线用户信息Bean</p>
* <li> 论坛在线用户信息 <br>
* <br><b>WebSite: www.yyhweb.com</b>
* <br><b>CopyRight: yyhweb[由由华网]</b>
* @author stephen
* @version YHBBS-2.0
*/
public class UserSessionIm implements UserSession {
private int userId = 0;
private String username = "";
private int usertype = 0;
private String ip = "";
private String os = "";
private String browser = "";
private int forumid = 0;
private int money = 0;
private String logintime = "";
private String activetime = "";
private String postion = "";
private String islock = "1";
public int getUserId() {
return userId;
}
public void setUserId(int userId) {
this.userId = userId;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public int getUsertype() {
return usertype;
}
public void setUsertype(int usertype) {
this.usertype = usertype;
}
public String getBrowser() {
return browser;
}
public void setBrowser(String browser) {
this.browser = browser;
}
public String getIp() {
return ip;
}
public void setIp(String ip) {
this.ip = ip;
}
public String getOs() {
return os;
}
public void setOs(String os) {
this.os = os;
}
public int getMoney() {
return money;
}
public void setMoney(int money) {
this.money = money;
}
public String getActivetime() {
return activetime;
}
public void setActivetime(String activetime) {
this.activetime = activetime;
}
public int getForumid() {
return forumid;
}
public void setForumid(int forumid) {
this.forumid = forumid;
}
public String getLogintime() {
return logintime;
}
public void setLogintime(String logintime) {
this.logintime = logintime;
}
public String getPostion() {
return postion;
}
public void setPostion(String postion) {
this.postion = postion;
}
public String getIslock() {
return islock;
}
public void setIslock(String islock) {
this.islock = islock;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -