LargeCar.java 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. package com.project.zcustom.domain.addional;
  2. import com.baomidou.mybatisplus.annotation.TableId;
  3. import com.baomidou.mybatisplus.annotation.TableName;
  4. import com.fasterxml.jackson.annotation.JsonInclude;
  5. import com.project.common.annotation.Excel;
  6. import com.project.common.core.domain.CustomBaseEntity;
  7. import lombok.Data;
  8. import java.math.BigDecimal;
  9. @Data
  10. @TableName("large_plat_public_car")
  11. @JsonInclude(JsonInclude.Include.NON_NULL)
  12. public class LargeCar extends CustomBaseEntity {
  13. private Long id;
  14. /**
  15. * 所属单位
  16. */
  17. @Excel(name = "所属单位")
  18. private String appEncode;
  19. /**
  20. * 公务车实有总数
  21. */
  22. @Excel(name = "公务车实有总数")
  23. private Long totalCarNum;
  24. /**
  25. * 商务车数量
  26. */
  27. @Excel(name = "商务车数量")
  28. private Long carNumOne;
  29. /**
  30. * 越野车数量
  31. */
  32. @Excel(name = "越野车数量")
  33. private Long carNumTwo;
  34. /**
  35. * 小轿车数量
  36. */
  37. @Excel(name = "小轿车数量")
  38. private Long carNumThree;
  39. /**
  40. * 小型客车数量
  41. */
  42. @Excel(name = "小型客车数量")
  43. private Long carNumFour;
  44. /**
  45. * 大型客车数量
  46. */
  47. @Excel(name = "大型客车数量")
  48. private Long carNumFive;
  49. /**
  50. * 企业用车数量
  51. */
  52. @Excel(name = "企业用车数量")
  53. private Long enterpriseCarNum;
  54. /**
  55. * 企业负责人用车数量
  56. */
  57. @Excel(name = "企业负责人用车数量")
  58. private Long headCarNum;
  59. /**
  60. * 燃油车数量
  61. */
  62. @Excel(name = "燃油车数量")
  63. private Long oilCarNum;
  64. /**
  65. * 新能源车数量
  66. */
  67. @Excel(name = "新能源车数量")
  68. private Long newPowerCarNum;
  69. /**
  70. * 公务车缺编数
  71. */
  72. private Long lackCarNum;
  73. /**
  74. * 公务车编制数
  75. */
  76. @Excel(name = "公务车编制数")
  77. private Long establishmentsCarNum;
  78. /**
  79. * 公务车年度增加数
  80. */
  81. @Excel(name = "公务车年度增加数")
  82. private Long yearAddNum;
  83. /**
  84. * 公务车年度减少数
  85. */
  86. @Excel(name = "公务车年度减少数")
  87. private Long yearReduceNum;
  88. /**
  89. * 公务车终端数
  90. */
  91. private Long terminalTotal;
  92. /**
  93. * 公务车终端安装数
  94. */
  95. private Long terminalInstall;
  96. /**
  97. * 公务车终端在线数
  98. */
  99. private Long terminalOnline;
  100. /**
  101. * 处置未归档数量
  102. */
  103. @Excel(name = "处置未归档数量")
  104. private Long notArchivedNum;
  105. /**
  106. * 未带工单数
  107. */
  108. @Excel(name = "未带工单数")
  109. private Long noPidNum;
  110. /**
  111. * 超速预警数
  112. */
  113. @Excel(name = "超速预警数")
  114. private Long overSpeedNum;
  115. /**
  116. * 节假日预警数
  117. */
  118. @Excel(name = "节假日预警数")
  119. private Long holidayNum;
  120. /**
  121. * 派车单总数
  122. */
  123. @Excel(name = "派车单总数")
  124. private String pcdNum;
  125. /**
  126. * 均车派车单数
  127. */
  128. @Excel(name = "均车派车单数")
  129. private String avgPcdNum;
  130. /**
  131. * 公务车行驶总里程
  132. */
  133. @Excel(name = "公务车行驶总里程")
  134. private String mileCount;
  135. /**
  136. * 均车里程
  137. */
  138. @Excel(name = "均车里程")
  139. private String avgMile;
  140. }