95 lines
1.5 KiB
C#
95 lines
1.5 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_bank
|
|||
|
|
{
|
|||
|
|
#region Model
|
|||
|
|
private int _id;
|
|||
|
|
private int _MemberID;
|
|||
|
|
private string _payeename;
|
|||
|
|
private string _bankcard;
|
|||
|
|
private string _bankname;
|
|||
|
|
private string _mobile;
|
|||
|
|
private string _email;
|
|||
|
|
private int _isedit;
|
|||
|
|
private string _Province;
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public int Id
|
|||
|
|
{
|
|||
|
|
set{ _id=value;}
|
|||
|
|
get{return _id;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public int MemberID
|
|||
|
|
{
|
|||
|
|
set { _MemberID = value; }
|
|||
|
|
get { return _MemberID; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public string PayeeName
|
|||
|
|
{
|
|||
|
|
set{ _payeename=value;}
|
|||
|
|
get{return _payeename;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public string BankCard
|
|||
|
|
{
|
|||
|
|
set{ _bankcard=value;}
|
|||
|
|
get{return _bankcard;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public string BankName
|
|||
|
|
{
|
|||
|
|
set{ _bankname=value;}
|
|||
|
|
get{return _bankname;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public string Mobile
|
|||
|
|
{
|
|||
|
|
set{ _mobile=value;}
|
|||
|
|
get{return _mobile;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public string Email
|
|||
|
|
{
|
|||
|
|
set{ _email=value;}
|
|||
|
|
get{return _email;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public int isEdit
|
|||
|
|
{
|
|||
|
|
set{ _isedit=value;}
|
|||
|
|
get{return _isedit;}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public string Province
|
|||
|
|
{
|
|||
|
|
get { return _Province; }
|
|||
|
|
set { _Province = value; }
|
|||
|
|
}
|
|||
|
|
#endregion Model
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|