Files
g.hnyhua.cn/Mtxfw.Model/User_OnLine.cs
2026-02-07 15:48:27 +08:00

162 lines
3.7 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
namespace Mtxfw.Model
{
/// <summary>
/// user_info:实体类(属性说明自动提取数据库字段的描述信息)
/// </summary>
[Serializable]
public partial class User_OnLine
{
public User_OnLine()
{}
#region Model
private Int64 _Id;
private string _SessionId;//SessionId
private int _MemberId;//会员ID
private int _DLID;//代理ID
private int _ZDLID;//总代理ID
private int _GDID;//股东ID
private int _FGSID;//分公司ID
private DateTime _InTime;//登录时间
private DateTime _ReTime;//刷新时间//1分钟内未刷新视为自动退出
private DateTime _OutTime;//退出时间
private int _IsOnline;//是否在线0否1是
private string _IP;//登录ip
private string _MAC;//登录MAC地址
private int _IsDL;//是否在別處登錄
private int _UserType; //会员类型0会员1管理员
private int _gtype; //类型0总公司 1分公司 2分公司
/// <summary>
///
/// </summary>
public Int64 Id
{
set { _Id = value; }
get { return _Id; }
}
/// <summary>
///
/// </summary>
public string SessionId
{
set { _SessionId = value; }
get { return _SessionId; }
}
/// <summary>
///
/// </summary>
public int MemberId
{
set { _MemberId = value; }
get { return _MemberId; }
}
/// <summary>
///
/// </summary>
public int DLID
{
set { _DLID = value; }
get { return _DLID; }
}
/// <summary>
///
/// </summary>
public int ZDLID
{
set { _ZDLID = value; }
get { return _ZDLID; }
}
/// <summary>
///
/// </summary>
public int GDID
{
set { _GDID = value; }
get { return _GDID; }
}
/// <summary>
///
/// </summary>
public int FGSID
{
set { _FGSID = value; }
get { return _FGSID; }
}
/// <summary>
///
/// </summary>
public DateTime InTime
{
set { _InTime = value; }
get { return _InTime; }
}
/// <summary>
///
/// </summary>
public DateTime ReTime
{
set { _ReTime = value; }
get { return _ReTime; }
}
/// <summary>
///
/// </summary>
public DateTime OutTime
{
set { _OutTime = value; }
get { return _OutTime; }
}
/// <summary>
///
/// </summary>
public int IsOnline
{
set { _IsOnline = value; }
get { return _IsOnline; }
}
/// <summary>
/// utype
/// </summary>
public string IP
{
set { _IP = value; }
get { return _IP; }
}
/// <summary>
/// utype
/// </summary>
public string MAC
{
set { _MAC = value; }
get { return _MAC; }
}
/// <summary>
///
/// </summary>
public int UserType
{
set { _UserType = value; }
get { return _UserType; }
}
/// <summary>
///
/// </summary>
public int IsDL
{
set { _IsDL = value; }
get { return _IsDL; }
}
/// <summary>
///
/// </summary>
public int gtype
{
set { _gtype = value; }
get { return _gtype; }
}
#endregion Model
}
}