using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace RoadFlow.Data.Model { /// /// 在线用户实体 /// [Serializable] public class OnlineUsers { /// /// 用户ID /// public string ID { get; set; } /// /// 用户名称 /// public string UserName { get; set; } /// /// 所在组织 /// public string OrgName { get; set; } /// /// 登录IP /// public string IP { get; set; } /// /// 客户端信息 浏览器版本等 /// public string ClientInfo { get; set; } /// /// 最后访问页面 /// public string LastPage { get; set; } /// /// 登录时间 /// public DateTime LoginTime { get; set; } /// /// 唯一ID /// public Guid UniqueID { get; set; } } }