ReceivablesTemp.cs 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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 ReceivablesTemp
  11. {
  12. string no;
  13. /// <summary>
  14. /// 序号
  15. /// </summary>
  16. public string No
  17. {
  18. get { return no; }
  19. set { no = value; }
  20. }
  21. string clientUnit;
  22. /// <summary>
  23. /// 客户单位
  24. /// </summary>
  25. public string ClientUnit
  26. {
  27. get { return clientUnit; }
  28. set { clientUnit = value; }
  29. }
  30. string teamName;
  31. /// <summary>
  32. /// 团组名称
  33. /// </summary>
  34. public string TeamName
  35. {
  36. get { return teamName; }
  37. set { teamName = value; }
  38. }
  39. string visitDate;
  40. /// <summary>
  41. /// 出访日期
  42. /// </summary>
  43. public string VisitDate
  44. {
  45. get { return visitDate; }
  46. set { visitDate = value; }
  47. }
  48. string accounts;
  49. /// <summary>
  50. /// 应收
  51. /// </summary>
  52. public string Accounts
  53. {
  54. get { return accounts; }
  55. set { accounts = value; }
  56. }
  57. string received;
  58. /// <summary>
  59. /// 已收
  60. /// </summary>
  61. public string Received
  62. {
  63. get { return received; }
  64. set { received = value; }
  65. }
  66. string balance;
  67. /// <summary>
  68. /// 余款
  69. /// </summary>
  70. public string Balance
  71. {
  72. get { return balance; }
  73. set { balance = value; }
  74. }
  75. string collection;
  76. /// <summary>
  77. /// 收款进度
  78. /// </summary>
  79. public string Collection
  80. {
  81. get { return collection; }
  82. set { collection = value; }
  83. }
  84. }
  85. }