81 lines
1.3 KiB
C#
81 lines
1.3 KiB
C#
|
|
using System;
|
|||
|
|
namespace Mtxfw.Model
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// ConvertiblePaper:ʵ<><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 ConvertiblePaper
|
|||
|
|
{
|
|||
|
|
public ConvertiblePaper()
|
|||
|
|
{}
|
|||
|
|
#region Model
|
|||
|
|
private int _id;
|
|||
|
|
private string _cardid;
|
|||
|
|
private string _accountid;
|
|||
|
|
private string _password;
|
|||
|
|
private decimal? _amount;
|
|||
|
|
private string _state;
|
|||
|
|
private string _Utype;
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public int Id
|
|||
|
|
{
|
|||
|
|
set{ _id=value;}
|
|||
|
|
get{return _id;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public string CardId
|
|||
|
|
{
|
|||
|
|
set{ _cardid=value;}
|
|||
|
|
get{return _cardid;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public string AccountId
|
|||
|
|
{
|
|||
|
|
set{ _accountid=value;}
|
|||
|
|
get{return _accountid;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public string Password
|
|||
|
|
{
|
|||
|
|
set{ _password=value;}
|
|||
|
|
get{return _password;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal? Amount
|
|||
|
|
{
|
|||
|
|
set{ _amount=value;}
|
|||
|
|
get{return _amount;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public string State
|
|||
|
|
{
|
|||
|
|
set{ _state=value;}
|
|||
|
|
get{return _state;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public string Utype
|
|||
|
|
{
|
|||
|
|
set { _Utype = value; }
|
|||
|
|
get { return _Utype; }
|
|||
|
|
}
|
|||
|
|
#endregion Model
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|