BillInfo.cs 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Models
  6. {
  7. /// <summary>
  8. ///信用卡账单信息表
  9. /// </summary>
  10. public class BillInfo
  11. {
  12. int id;
  13. /// <summary>
  14. /// 主键
  15. /// </summary>
  16. public int Id
  17. {
  18. get { return id; }
  19. set { id = value; }
  20. }
  21. string transDate;
  22. /// <summary>
  23. /// 交易日
  24. /// </summary>
  25. public string TransDate
  26. {
  27. get { return transDate; }
  28. set { transDate = value; }
  29. }
  30. string postDate;
  31. /// <summary>
  32. /// 记账日
  33. /// </summary>
  34. public string PostDate
  35. {
  36. get { return postDate; }
  37. set { postDate = value; }
  38. }
  39. string description;
  40. /// <summary>
  41. /// 交易摘要
  42. /// </summary>
  43. public string Description
  44. {
  45. get { return description; }
  46. set { description = value; }
  47. }
  48. float amount;
  49. /// <summary>
  50. /// 人民币金额
  51. /// </summary>
  52. public float Amount
  53. {
  54. get { return amount; }
  55. set { amount = value; }
  56. }
  57. string currency;
  58. /// <summary>
  59. /// 币种
  60. /// </summary>
  61. public string Currency
  62. {
  63. get { return currency; }
  64. set { currency = value; }
  65. }
  66. int isDel;
  67. public int IsDel
  68. {
  69. get { return isDel; }
  70. set { isDel = value; }
  71. }
  72. }
  73. }