You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
345 B
24 lines
345 B
package com.ruoyi.common.enums;
|
|
|
|
/**
|
|
* 用户会话
|
|
*
|
|
* @author ruoyi
|
|
*/
|
|
public enum OnlineStatus
|
|
{
|
|
/** 用户状态 */
|
|
on_line("在线"), off_line("离线");
|
|
|
|
private final String info;
|
|
|
|
private OnlineStatus(String info)
|
|
{
|
|
this.info = info;
|
|
}
|
|
|
|
public String getInfo()
|
|
{
|
|
return info;
|
|
}
|
|
}
|
|
|