FleetCarManage.java 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630
  1. package com.ruoyi.basicData.domain;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import com.ruoyi.common.annotation.Excel;
  4. import com.ruoyi.common.core.domain.BaseEntity;
  5. import org.apache.commons.lang3.builder.ToStringBuilder;
  6. import org.apache.commons.lang3.builder.ToStringStyle;
  7. import java.util.Date;
  8. /**
  9. * 车辆对象 fleet_car_manage
  10. *
  11. * @author ruoyi
  12. * @date 2021-03-19
  13. */
  14. public class FleetCarManage extends BaseEntity {
  15. private static final long serialVersionUID = 1L;
  16. /**
  17. * $column.columnComment
  18. */
  19. private Long id;
  20. /**
  21. * 车队id
  22. */
  23. @Excel(name = "车队id")
  24. private Long fleetCompanyId;
  25. /**
  26. * 车牌号
  27. */
  28. @Excel(name = "车牌号")
  29. private String carNum;
  30. /**
  31. * 驾驶员id
  32. */
  33. @Excel(name = "驾驶员id")
  34. private Long driverId;
  35. /**
  36. * 驾驶员
  37. */
  38. @Excel(name = "驾驶员")
  39. private String driverName;
  40. /**
  41. * 驾驶员
  42. */
  43. @Excel(name = "驾驶员电话")
  44. private String driverTel;
  45. /**
  46. * 挂号
  47. */
  48. @Excel(name = "挂号")
  49. private String hangNum;
  50. /**
  51. * 燃油类型
  52. */
  53. @Excel(name = "燃油类型")
  54. private String fuelType;
  55. /**
  56. * 车辆类型
  57. */
  58. @Excel(name = "车辆类型")
  59. private String carType;
  60. /**
  61. * 车辆名称
  62. */
  63. @Excel(name = "车辆名称")
  64. private String carName;
  65. /**
  66. * 车辆品牌
  67. */
  68. @Excel(name = "车辆品牌")
  69. private String carBrand;
  70. /**
  71. * 制造单位
  72. */
  73. @Excel(name = "制造单位")
  74. private String manufactureUnit;
  75. /**
  76. * 发证机关
  77. */
  78. @Excel(name = "发证机关")
  79. private String officeOfCertificate;
  80. /**
  81. * 牵引车辆型号
  82. */
  83. @Excel(name = "牵引车辆型号")
  84. private String pullCarType;
  85. /**
  86. * 牵引车车架号
  87. */
  88. @Excel(name = "牵引车车架号")
  89. private String pullCarShelfNum;
  90. /**
  91. * 挂车型号
  92. */
  93. @Excel(name = "挂车型号")
  94. private String mountCarType;
  95. /**
  96. * 挂车车架号
  97. */
  98. @Excel(name = "挂车车架号")
  99. private String mountCarNum;
  100. /**
  101. * 发动机型号
  102. */
  103. @Excel(name = "发动机型号")
  104. private String engine;
  105. /**
  106. * 核载人数
  107. */
  108. @Excel(name = "核载人数")
  109. private Long carLoadPersion;
  110. /**
  111. * 购车日期
  112. */
  113. @JsonFormat(pattern = "yyyy-MM-dd")
  114. @Excel(name = "购车日期", width = 30, dateFormat = "yyyy-MM-dd")
  115. private Date buyCarDate;
  116. /**
  117. * 注册日期
  118. */
  119. @JsonFormat(pattern = "yyyy-MM-dd")
  120. @Excel(name = "注册日期", width = 30, dateFormat = "yyyy-MM-dd")
  121. private Date regiestDate;
  122. /**
  123. * 报废日期
  124. */
  125. @JsonFormat(pattern = "yyyy-MM-dd")
  126. @Excel(name = "报废日期", width = 30, dateFormat = "yyyy-MM-dd")
  127. private Date abandonDate;
  128. /**
  129. * 外阔尺寸mm
  130. */
  131. @Excel(name = "外阔尺寸mm")
  132. private Long outerSize;
  133. /**
  134. * 总重量kg
  135. */
  136. @Excel(name = "总重量kg")
  137. private Long sumWeight;
  138. /**
  139. * 核定重量kg
  140. */
  141. @Excel(name = "核定重量kg")
  142. private Long vouchWeight;
  143. /**
  144. * 装备质量kg
  145. */
  146. @Excel(name = "装备质量kg")
  147. private Long equipWeight;
  148. /**
  149. * 行驶证头src
  150. */
  151. @Excel(name = "行驶证头src")
  152. private String drivingLicenseSrc;
  153. /**
  154. * 行驶证挂件src
  155. */
  156. @Excel(name = "行驶证挂件src")
  157. private String drivingPendantSrc;
  158. /**
  159. * 运营证头src
  160. */
  161. @Excel(name = "运营证头src")
  162. private String operationLicenseSrc;
  163. /**
  164. * 技术评定证书src
  165. */
  166. @Excel(name = "技术评定证书src")
  167. private String technologySrc;
  168. /**
  169. * 营运挂载src
  170. */
  171. @Excel(name = "营运挂载src")
  172. private String drivingLoadSrc;
  173. /**
  174. * 二级维护src
  175. */
  176. @Excel(name = "二级维护src")
  177. private String secondLvMaintainSrc;
  178. /**
  179. * 交强险src
  180. */
  181. @Excel(name = "交强险src")
  182. private String tafficConstranintInsuranceSrc;
  183. /**
  184. * 商业保险src
  185. */
  186. @Excel(name = "商业保险src")
  187. private String businessInsuranceSrc;
  188. /**
  189. * 承运人保险src
  190. */
  191. @Excel(name = "承运人保险src")
  192. private String accpetCarrageInsuranceSrc;
  193. /**
  194. * 创建时间
  195. */
  196. @JsonFormat(pattern = "yyyy-MM-dd")
  197. @Excel(name = "创建时间", width = 30, dateFormat = "yyyy-MM-dd")
  198. private Date creatTime;
  199. /**
  200. * 更新时间
  201. */
  202. @JsonFormat(pattern = "yyyy-MM-dd")
  203. @Excel(name = "更新时间", width = 30, dateFormat = "yyyy-MM-dd")
  204. private Date modificationTime;
  205. /**
  206. * 状态(1新建,2暂存,6提交)
  207. */
  208. @Excel(name = "状态(1新建,2暂存,6提交)")
  209. private Long billStatus;
  210. /**
  211. * 删除状态
  212. */
  213. private String delFlag;
  214. /**
  215. * 备注
  216. */
  217. @Excel(name = "备注")
  218. private String remarks;
  219. public void setId(Long id) {
  220. this.id = id;
  221. }
  222. public Long getId() {
  223. return id;
  224. }
  225. public void setFleetCompanyId(Long fleetCompanyId) {
  226. this.fleetCompanyId = fleetCompanyId;
  227. }
  228. public Long getFleetCompanyId() {
  229. return fleetCompanyId;
  230. }
  231. public void setCarNum(String carNum) {
  232. this.carNum = carNum;
  233. }
  234. public String getCarNum() {
  235. return carNum;
  236. }
  237. public void setDriverId(Long driverId) {
  238. this.driverId = driverId;
  239. }
  240. public Long getDriverId() {
  241. return driverId;
  242. }
  243. public void setDriverName(String driverName) {
  244. this.driverName = driverName;
  245. }
  246. public String getDriverName() {
  247. return driverName;
  248. }
  249. public String getDriverTel() {
  250. return driverTel;
  251. }
  252. public void setDriverTel(String driverTel) {
  253. this.driverTel = driverTel;
  254. }
  255. public void setHangNum(String hangNum) {
  256. this.hangNum = hangNum;
  257. }
  258. public String getHangNum() {
  259. return hangNum;
  260. }
  261. public void setFuelType(String fuelType) {
  262. this.fuelType = fuelType;
  263. }
  264. public String getFuelType() {
  265. return fuelType;
  266. }
  267. public void setCarType(String carType) {
  268. this.carType = carType;
  269. }
  270. public String getCarType() {
  271. return carType;
  272. }
  273. public void setCarName(String carName) {
  274. this.carName = carName;
  275. }
  276. public String getCarName() {
  277. return carName;
  278. }
  279. public void setCarBrand(String carBrand) {
  280. this.carBrand = carBrand;
  281. }
  282. public String getCarBrand() {
  283. return carBrand;
  284. }
  285. public void setManufactureUnit(String manufactureUnit) {
  286. this.manufactureUnit = manufactureUnit;
  287. }
  288. public String getManufactureUnit() {
  289. return manufactureUnit;
  290. }
  291. public void setOfficeOfCertificate(String officeOfCertificate) {
  292. this.officeOfCertificate = officeOfCertificate;
  293. }
  294. public String getOfficeOfCertificate() {
  295. return officeOfCertificate;
  296. }
  297. public void setPullCarType(String pullCarType) {
  298. this.pullCarType = pullCarType;
  299. }
  300. public String getPullCarType() {
  301. return pullCarType;
  302. }
  303. public void setPullCarShelfNum(String pullCarShelfNum) {
  304. this.pullCarShelfNum = pullCarShelfNum;
  305. }
  306. public String getPullCarShelfNum() {
  307. return pullCarShelfNum;
  308. }
  309. public void setMountCarType(String mountCarType) {
  310. this.mountCarType = mountCarType;
  311. }
  312. public String getMountCarType() {
  313. return mountCarType;
  314. }
  315. public void setMountCarNum(String mountCarNum) {
  316. this.mountCarNum = mountCarNum;
  317. }
  318. public String getMountCarNum() {
  319. return mountCarNum;
  320. }
  321. public void setEngine(String engine) {
  322. this.engine = engine;
  323. }
  324. public String getEngine() {
  325. return engine;
  326. }
  327. public void setCarLoadPersion(Long carLoadPersion) {
  328. this.carLoadPersion = carLoadPersion;
  329. }
  330. public Long getCarLoadPersion() {
  331. return carLoadPersion;
  332. }
  333. public void setBuyCarDate(Date buyCarDate) {
  334. this.buyCarDate = buyCarDate;
  335. }
  336. public Date getBuyCarDate() {
  337. return buyCarDate;
  338. }
  339. public void setRegiestDate(Date regiestDate) {
  340. this.regiestDate = regiestDate;
  341. }
  342. public Date getRegiestDate() {
  343. return regiestDate;
  344. }
  345. public void setAbandonDate(Date abandonDate) {
  346. this.abandonDate = abandonDate;
  347. }
  348. public Date getAbandonDate() {
  349. return abandonDate;
  350. }
  351. public void setOuterSize(Long outerSize) {
  352. this.outerSize = outerSize;
  353. }
  354. public Long getOuterSize() {
  355. return outerSize;
  356. }
  357. public void setSumWeight(Long sumWeight) {
  358. this.sumWeight = sumWeight;
  359. }
  360. public Long getSumWeight() {
  361. return sumWeight;
  362. }
  363. public void setVouchWeight(Long vouchWeight) {
  364. this.vouchWeight = vouchWeight;
  365. }
  366. public Long getVouchWeight() {
  367. return vouchWeight;
  368. }
  369. public void setEquipWeight(Long equipWeight) {
  370. this.equipWeight = equipWeight;
  371. }
  372. public Long getEquipWeight() {
  373. return equipWeight;
  374. }
  375. public void setDrivingLicenseSrc(String drivingLicenseSrc) {
  376. this.drivingLicenseSrc = drivingLicenseSrc;
  377. }
  378. public String getDrivingLicenseSrc() {
  379. return drivingLicenseSrc;
  380. }
  381. public void setDrivingPendantSrc(String drivingPendantSrc) {
  382. this.drivingPendantSrc = drivingPendantSrc;
  383. }
  384. public String getDrivingPendantSrc() {
  385. return drivingPendantSrc;
  386. }
  387. public void setOperationLicenseSrc(String operationLicenseSrc) {
  388. this.operationLicenseSrc = operationLicenseSrc;
  389. }
  390. public String getOperationLicenseSrc() {
  391. return operationLicenseSrc;
  392. }
  393. public void setTechnologySrc(String technologySrc) {
  394. this.technologySrc = technologySrc;
  395. }
  396. public String getTechnologySrc() {
  397. return technologySrc;
  398. }
  399. public void setDrivingLoadSrc(String drivingLoadSrc) {
  400. this.drivingLoadSrc = drivingLoadSrc;
  401. }
  402. public String getDrivingLoadSrc() {
  403. return drivingLoadSrc;
  404. }
  405. public void setSecondLvMaintainSrc(String secondLvMaintainSrc) {
  406. this.secondLvMaintainSrc = secondLvMaintainSrc;
  407. }
  408. public String getSecondLvMaintainSrc() {
  409. return secondLvMaintainSrc;
  410. }
  411. public void setTafficConstranintInsuranceSrc(String tafficConstranintInsuranceSrc) {
  412. this.tafficConstranintInsuranceSrc = tafficConstranintInsuranceSrc;
  413. }
  414. public String getTafficConstranintInsuranceSrc() {
  415. return tafficConstranintInsuranceSrc;
  416. }
  417. public void setBusinessInsuranceSrc(String businessInsuranceSrc) {
  418. this.businessInsuranceSrc = businessInsuranceSrc;
  419. }
  420. public String getBusinessInsuranceSrc() {
  421. return businessInsuranceSrc;
  422. }
  423. public void setAccpetCarrageInsuranceSrc(String accpetCarrageInsuranceSrc) {
  424. this.accpetCarrageInsuranceSrc = accpetCarrageInsuranceSrc;
  425. }
  426. public String getAccpetCarrageInsuranceSrc() {
  427. return accpetCarrageInsuranceSrc;
  428. }
  429. public void setCreatTime(Date creatTime) {
  430. this.creatTime = creatTime;
  431. }
  432. public Date getCreatTime() {
  433. return creatTime;
  434. }
  435. public void setModificationTime(Date modificationTime) {
  436. this.modificationTime = modificationTime;
  437. }
  438. public Date getModificationTime() {
  439. return modificationTime;
  440. }
  441. public void setBillStatus(Long billStatus) {
  442. this.billStatus = billStatus;
  443. }
  444. public Long getBillStatus() {
  445. return billStatus;
  446. }
  447. public void setDelFlag(String delFlag) {
  448. this.delFlag = delFlag;
  449. }
  450. public String getDelFlag() {
  451. return delFlag;
  452. }
  453. public void setRemarks(String remarks) {
  454. this.remarks = remarks;
  455. }
  456. public String getRemarks() {
  457. return remarks;
  458. }
  459. @Override
  460. public String toString() {
  461. return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
  462. .append("id", getId())
  463. .append("fleetCompanyId", getFleetCompanyId())
  464. .append("carNum", getCarNum())
  465. .append("driverId", getDriverId())
  466. .append("driverName", getDriverName())
  467. .append("hangNum", getHangNum())
  468. .append("fuelType", getFuelType())
  469. .append("carType", getCarType())
  470. .append("carName", getCarName())
  471. .append("carBrand", getCarBrand())
  472. .append("manufactureUnit", getManufactureUnit())
  473. .append("officeOfCertificate", getOfficeOfCertificate())
  474. .append("pullCarType", getPullCarType())
  475. .append("pullCarShelfNum", getPullCarShelfNum())
  476. .append("mountCarType", getMountCarType())
  477. .append("mountCarNum", getMountCarNum())
  478. .append("engine", getEngine())
  479. .append("carLoadPersion", getCarLoadPersion())
  480. .append("buyCarDate", getBuyCarDate())
  481. .append("regiestDate", getRegiestDate())
  482. .append("abandonDate", getAbandonDate())
  483. .append("outerSize", getOuterSize())
  484. .append("sumWeight", getSumWeight())
  485. .append("vouchWeight", getVouchWeight())
  486. .append("equipWeight", getEquipWeight())
  487. .append("drivingLicenseSrc", getDrivingLicenseSrc())
  488. .append("drivingPendantSrc", getDrivingPendantSrc())
  489. .append("operationLicenseSrc", getOperationLicenseSrc())
  490. .append("technologySrc", getTechnologySrc())
  491. .append("drivingLoadSrc", getDrivingLoadSrc())
  492. .append("secondLvMaintainSrc", getSecondLvMaintainSrc())
  493. .append("tafficConstranintInsuranceSrc", getTafficConstranintInsuranceSrc())
  494. .append("businessInsuranceSrc", getBusinessInsuranceSrc())
  495. .append("accpetCarrageInsuranceSrc", getAccpetCarrageInsuranceSrc())
  496. .append("creatTime", getCreatTime())
  497. .append("modificationTime", getModificationTime())
  498. .append("billStatus", getBillStatus())
  499. .append("delFlag", getDelFlag())
  500. .append("createBy", getCreateBy())
  501. .append("updateBy", getUpdateBy())
  502. .append("updateTime", getUpdateTime())
  503. .append("remarks", getRemarks())
  504. .toString();
  505. }
  506. }