FleetCarManage.java 14 KB

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