68 lines
1.4 KiB
C#
68 lines
1.4 KiB
C#
|
|
using System;
|
|||
|
|
namespace Mtxfw.Model
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// user_bank:ʵ<><CAB5><EFBFBD><EFBFBD>(<28><><EFBFBD><EFBFBD>˵<EFBFBD><CBB5><EFBFBD>Զ<EFBFBD><D4B6><EFBFBD>ȡ<EFBFBD><C8A1><EFBFBD>ݿ<EFBFBD><DDBF>ֶε<D6B6><CEB5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ)
|
|||
|
|
/// </summary>
|
|||
|
|
[Serializable]
|
|||
|
|
public partial class user_live_tclog
|
|||
|
|
{
|
|||
|
|
#region Model
|
|||
|
|
private int _id;
|
|||
|
|
private int _MemberId;//<2F><>ԱID
|
|||
|
|
private int _liveid;//ֱ<><D6B1>ID
|
|||
|
|
private int _ttype;//<2F><><EFBFBD><EFBFBD>0<EFBFBD><30><EFBFBD><EFBFBD><EFBFBD>߳<EFBFBD>1<EFBFBD><31><EFBFBD><EFBFBD>Ա<EFBFBD>߳<EFBFBD>
|
|||
|
|
private DateTime _addtime;//<2F>߳<EFBFBD>ʱ<EFBFBD><CAB1>
|
|||
|
|
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
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|