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