Level.cs 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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 Level
  11. {
  12. int id;
  13. /// <summary>
  14. /// 主键
  15. /// </summary>
  16. public int Id
  17. {
  18. get { return id; }
  19. set { id = value; }
  20. }
  21. int lid;
  22. /// <summary>
  23. /// 等级id
  24. /// </summary>
  25. public int Lid
  26. {
  27. get { return lid; }
  28. set { lid = value; }
  29. }
  30. float profit;
  31. /// <summary>
  32. /// 利润
  33. /// </summary>
  34. public float Profit
  35. {
  36. get { return profit; }
  37. set { profit = value; }
  38. }
  39. float rebate;
  40. /// <summary>
  41. /// 返利
  42. /// </summary>
  43. public float Rebate
  44. {
  45. get { return rebate; }
  46. set { rebate = value; }
  47. }
  48. float tax;
  49. /// <summary>
  50. /// 税额
  51. /// </summary>
  52. public float Tax
  53. {
  54. get { return tax; }
  55. set { tax = value; }
  56. }
  57. int did;
  58. /// <summary>
  59. /// 部门id
  60. /// </summary>
  61. public int Did
  62. {
  63. get { return did; }
  64. set { did = value; }
  65. }
  66. int isDel;
  67. /// <summary>
  68. /// 删除状态
  69. /// </summary>
  70. public int IsDel
  71. {
  72. get { return isDel; }
  73. set { isDel = value; }
  74. }
  75. string lName;
  76. /// <summary>
  77. /// 等级名称
  78. /// </summary>
  79. public string LName
  80. {
  81. get { return lName; }
  82. set { lName = value; }
  83. }
  84. int cid;
  85. /// <summary>
  86. /// 航空公司id
  87. /// </summary>
  88. public int Cid
  89. {
  90. get { return cid; }
  91. set { cid = value; }
  92. }
  93. }
  94. }