68 lines
1.4 KiB
C#
68 lines
1.4 KiB
C#
using System;
|
|
namespace Mtxfw.Model
|
|
{
|
|
/// <summary>
|
|
/// user_bank:实体类(属性说明自动提取数据库字段的描述信息)
|
|
/// </summary>
|
|
[Serializable]
|
|
public partial class user_live_tclog
|
|
{
|
|
#region Model
|
|
private int _id;
|
|
private int _MemberId;//会员ID
|
|
private int _liveid;//直播ID
|
|
private int _ttype;//类型0播主踢出1管理员踢出
|
|
private DateTime _addtime;//踢出时间
|
|
private int _gtype;
|
|
public int Id
|
|
{
|
|
set{ _id=value;}
|
|
get{return _id;}
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int MemberId
|
|
{
|
|
set { _MemberId = value; }
|
|
get { return _MemberId; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int liveid
|
|
{
|
|
set { _liveid = value; }
|
|
get { return _liveid; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int ttype
|
|
{
|
|
set { _ttype = value; }
|
|
get { return _ttype; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public DateTime addtime
|
|
{
|
|
set { _addtime = value; }
|
|
get { return _addtime; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int gtype
|
|
{
|
|
set { _gtype = value; }
|
|
get { return _gtype; }
|
|
}
|
|
#endregion Model
|
|
|
|
}
|
|
}
|
|
|