89 lines
1.8 KiB
C#
89 lines
1.8 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_YZMs
|
|||
|
|
{
|
|||
|
|
#region Model
|
|||
|
|
private int _id;
|
|||
|
|
private string _YZID;//<2F><>֤ID
|
|||
|
|
private string _phone;//<2F>ֻ<EFBFBD><D6BB><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
|
private string _YZM;//<2F><>֤<EFBFBD><D6A4>
|
|||
|
|
private string _ip;//ip<69><70>ַ
|
|||
|
|
private DateTime _AddTime;//<2F><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>
|
|||
|
|
private int _IFEnable;//<2F>Ƿ<EFBFBD><C7B7><EFBFBD>Ч 0<><30>1<EFBFBD><31>
|
|||
|
|
private int _utype;//<2F><><EFBFBD><EFBFBD>
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public int Id
|
|||
|
|
{
|
|||
|
|
set{ _id=value;}
|
|||
|
|
get{return _id;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public string YZID
|
|||
|
|
{
|
|||
|
|
set { _YZID = value; }
|
|||
|
|
get { return _YZID; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public string phone
|
|||
|
|
{
|
|||
|
|
set { _phone = value; }
|
|||
|
|
get { return _phone; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public string YZM
|
|||
|
|
{
|
|||
|
|
set { _YZM = value; }
|
|||
|
|
get { return _YZM; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public string ip
|
|||
|
|
{
|
|||
|
|
set { _ip = value; }
|
|||
|
|
get { return _ip; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public DateTime AddTime
|
|||
|
|
{
|
|||
|
|
set { _AddTime = value; }
|
|||
|
|
get { return _AddTime; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public int IFEnable
|
|||
|
|
{
|
|||
|
|
set { _IFEnable = value; }
|
|||
|
|
get { return _IFEnable; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public int utype
|
|||
|
|
{
|
|||
|
|
set { _utype = value; }
|
|||
|
|
get { return _utype; }
|
|||
|
|
}
|
|||
|
|
#endregion Model
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|