📄 useronline.java
字号:
// Decompiled by Jad v1.5.7g. Copyright 2000 Pavel Kouznetsov.
// Jad home page: http://www.geocities.com/SiliconValley/Bridge/8617/jad.html
// Decompiler options: packimports(3) fieldsfirst ansi
// Source File Name: UserOnline.java
package com.laoer.bbscs.bean;
import java.io.Serializable;
import org.apache.commons.lang.builder.ToStringBuilder;
public class UserOnline
implements Serializable
{
private Long id;
private long userID;
private String userName;
private String nickName;
private long onlineTime;
private short isGuest;
private long boardsID;
private String atPlace;
public UserOnline(long userID, String userName, String nickName, long onlineTime, short isGuest,
long boardsID, String atPlace)
{
this.userID = userID;
this.userName = userName;
this.nickName = nickName;
this.onlineTime = onlineTime;
this.isGuest = isGuest;
this.boardsID = boardsID;
this.atPlace = atPlace;
}
public UserOnline()
{
}
public UserOnline(long userID, String userName, long onlineTime, short isGuest)
{
this.userID = userID;
this.userName = userName;
this.onlineTime = onlineTime;
this.isGuest = isGuest;
}
public Long getId()
{
return id;
}
public void setId(Long id)
{
this.id = id;
}
public long getUserID()
{
return userID;
}
public void setUserID(long userID)
{
this.userID = userID;
}
public String getUserName()
{
return userName;
}
public void setUserName(String userName)
{
this.userName = userName;
}
public String getNickName()
{
return nickName;
}
public void setNickName(String nickName)
{
this.nickName = nickName;
}
public long getOnlineTime()
{
return onlineTime;
}
public void setOnlineTime(long onlineTime)
{
this.onlineTime = onlineTime;
}
public short getIsGuest()
{
return isGuest;
}
public void setIsGuest(short isGuest)
{
this.isGuest = isGuest;
}
public long getBoardsID()
{
return boardsID;
}
public void setBoardsID(long boardsID)
{
this.boardsID = boardsID;
}
public String getAtPlace()
{
return atPlace;
}
public void setAtPlace(String atPlace)
{
this.atPlace = atPlace;
}
public String toString()
{
return (new ToStringBuilder(this)).append("id", getId()).toString();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -