154 lines
3.6 KiB
C#
154 lines
3.6 KiB
C#
using System;
|
||
namespace Mtxfw.Model
|
||
{
|
||
/// <summary>
|
||
/// User_log:实体类(属性说明自动提取数据库字段的描述信息)
|
||
/// </summary>
|
||
[Serializable]
|
||
public partial class User_log
|
||
{
|
||
public User_log()
|
||
{}
|
||
#region Model
|
||
private Int64 _Id;
|
||
private string _SessionId;//SessionId
|
||
private int _MemberId;//会员ID
|
||
private int _Orders;//访问次数
|
||
private int _SearchType;//搜索类型,0、其它,1、百度,2、360,3、搜狗,4、谷歌
|
||
private int _GDID;//股东ID
|
||
private int _FGSID;//分公司ID
|
||
private DateTime _OperatingTime;//操作时间
|
||
private string _OperatingIP;//操作ip
|
||
private string _SearchKeys;//搜索关键词
|
||
private string _OperatingBrowse;//操作浏览器
|
||
private string _OperatingPage;//操作页面和参数
|
||
private string _SourcePage;//来源操作页面和参数
|
||
private int _UserType; //会员类型
|
||
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 Orders
|
||
{
|
||
set { _Orders = value; }
|
||
get { return _Orders; }
|
||
}
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
public int SearchType
|
||
{
|
||
set { _SearchType = value; }
|
||
get { return _SearchType; }
|
||
}
|
||
/// <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 OperatingTime
|
||
{
|
||
set { _OperatingTime = value; }
|
||
get { return _OperatingTime; }
|
||
}
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
public string OperatingIP
|
||
{
|
||
set { _OperatingIP = value; }
|
||
get { return _OperatingIP; }
|
||
}
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
public string SearchKeys
|
||
{
|
||
set { _SearchKeys = value; }
|
||
get { return _SearchKeys; }
|
||
}
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
public string OperatingBrowse
|
||
{
|
||
set { _OperatingBrowse = value; }
|
||
get { return _OperatingBrowse; }
|
||
}
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
public string OperatingPage
|
||
{
|
||
set { _OperatingPage = value; }
|
||
get { return _OperatingPage; }
|
||
}
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
public string SourcePage
|
||
{
|
||
set { _SourcePage = value; }
|
||
get { return _SourcePage; }
|
||
}
|
||
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
public int UserType
|
||
{
|
||
set { _UserType = value; }
|
||
get { return _UserType; }
|
||
}
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
public int gtype
|
||
{
|
||
set { _gtype = value; }
|
||
get { return _gtype; }
|
||
}
|
||
#endregion Model
|
||
|
||
}
|
||
}
|
||
|