73 lines
1.5 KiB
C#
73 lines
1.5 KiB
C#
|
|
using System;
|
|||
|
|
namespace Mtxfw.Model
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// user_info:ʵ<><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_guanzhu
|
|||
|
|
{
|
|||
|
|
public user_guanzhu()
|
|||
|
|
{}
|
|||
|
|
#region Model
|
|||
|
|
private Int64 _id;
|
|||
|
|
private int _MemberId;//<2F><>ע<EFBFBD><D7A2><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ա
|
|||
|
|
private int _MemberId2;//<2F><><EFBFBD><EFBFBD>ע<EFBFBD><D7A2>Ա<EFBFBD><D4B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƶ
|
|||
|
|
private DateTime _addtime;//<2F><>ע<EFBFBD><D7A2><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>
|
|||
|
|
private int _utype; // utype 0<><30>ʾ<EFBFBD><CABE>ע<EFBFBD><D7A2>¼<EFBFBD><C2BC>1<EFBFBD><31>ʾ<EFBFBD><CABE><EFBFBD><EFBFBD>¼
|
|||
|
|
private int _gtype; //<2F><><EFBFBD>ͣ<EFBFBD>0<EFBFBD>ܹ<EFBFBD>˾ 1<>ֹ<EFBFBD>˾ 2<>ֹ<EFBFBD>˾
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public Int64 Id
|
|||
|
|
{
|
|||
|
|
set{ _id=value;}
|
|||
|
|
get{return _id;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public int MemberId
|
|||
|
|
{
|
|||
|
|
set { _MemberId = value; }
|
|||
|
|
get { return _MemberId; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public int MemberId2
|
|||
|
|
{
|
|||
|
|
set { _MemberId2 = value; }
|
|||
|
|
get { return _MemberId2; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
///addtime
|
|||
|
|
/// </summary>
|
|||
|
|
public DateTime addtime
|
|||
|
|
{
|
|||
|
|
set { _addtime = value; }
|
|||
|
|
get { return _addtime; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// utype
|
|||
|
|
/// </summary>
|
|||
|
|
public int utype
|
|||
|
|
{
|
|||
|
|
set { _utype = value; }
|
|||
|
|
get { return _utype; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public int gtype
|
|||
|
|
{
|
|||
|
|
set { _gtype = value; }
|
|||
|
|
get { return _gtype; }
|
|||
|
|
}
|
|||
|
|
#endregion Model
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|