82 lines
1.7 KiB
C#
82 lines
1.7 KiB
C#
using System;
|
|
namespace Mtxfw.Model
|
|
{
|
|
/// <summary>
|
|
/// user_info:实体类(属性说明自动提取数据库字段的描述信息)
|
|
/// </summary>
|
|
[Serializable]
|
|
public partial class user_info_fenghao
|
|
{
|
|
public user_info_fenghao()
|
|
{}
|
|
#region Model
|
|
private Int64 _id;
|
|
private int _MemberId;
|
|
private int _MemberId2;//匹配账号
|
|
private string _yuanyin;//封号原因
|
|
private Int64 _ResultId;//user_ResultsID
|
|
private DateTime _addtime;//添加时间
|
|
private int _ttype; // ttype 0封号1解封
|
|
/// <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>
|
|
///
|
|
/// </summary>
|
|
public string yuanyin
|
|
{
|
|
set { _yuanyin = value; }
|
|
get { return _yuanyin; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public Int64 ResultId
|
|
{
|
|
set { _ResultId = value; }
|
|
get { return _ResultId; }
|
|
}
|
|
/// <summary>
|
|
/// utype
|
|
/// </summary>
|
|
public DateTime addtime
|
|
{
|
|
set { _addtime = value; }
|
|
get { return _addtime; }
|
|
}
|
|
/// <summary>
|
|
/// utype
|
|
/// </summary>
|
|
public int ttype
|
|
{
|
|
set { _ttype = value; }
|
|
get { return _ttype; }
|
|
}
|
|
|
|
#endregion Model
|
|
|
|
}
|
|
}
|
|
|