using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Models
{
///
///信用卡账单信息表
///
public class BillInfo
{
int id;
///
/// 主键
///
public int Id
{
get { return id; }
set { id = value; }
}
string transDate;
///
/// 交易日
///
public string TransDate
{
get { return transDate; }
set { transDate = value; }
}
string postDate;
///
/// 记账日
///
public string PostDate
{
get { return postDate; }
set { postDate = value; }
}
string description;
///
/// 交易摘要
///
public string Description
{
get { return description; }
set { description = value; }
}
float amount;
///
/// 人民币金额
///
public float Amount
{
get { return amount; }
set { amount = value; }
}
string currency;
///
/// 币种
///
public string Currency
{
get { return currency; }
set { currency = value; }
}
int isDel;
public int IsDel
{
get { return isDel; }
set { isDel = value; }
}
}
}