VehicleLedgerExcel.java 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484
  1. package com.ruoyi.orderPlan.domain;
  2. import com.ruoyi.common.annotation.Excel;
  3. import java.math.BigDecimal;
  4. import java.util.List;
  5. /**
  6. * 车辆台账Excel
  7. */
  8. public class VehicleLedgerExcel {
  9. private Long id;
  10. @Excel(name = "提单号")
  11. private String mblno;
  12. @Excel(name = "装卸日期")
  13. private String mdLoadDate;
  14. @Excel(name = "贸易方式")
  15. private String billType;
  16. @Excel(name = "运输方式")
  17. private String transType;
  18. @Excel(name = "托运人")
  19. private String corpId;
  20. @Excel(name = "船名")
  21. private String ysl;
  22. @Excel(name = "航次")
  23. private String voy;
  24. @Excel(name = "柜量")
  25. private Long cntrQty;
  26. @Excel(name = "柜型")
  27. private String cntrId;
  28. @Excel(name = "品名")
  29. private String goodsId;
  30. @Excel(name = "重量")
  31. private BigDecimal cntrWeight;
  32. @Excel(name = "起运港")
  33. private String polId;
  34. @Excel(name = "目的港")
  35. private String podId;
  36. @Excel(name = "提箱场站")
  37. private String loadAddr;
  38. @Excel(name = "装货地")
  39. private String mdLoadAddr;
  40. @Excel(name = "卸货地")
  41. private String unLoadAddr;
  42. @Excel(name = "车号")
  43. private String carregNo;
  44. @Excel(name = "司机")
  45. private String driverName;
  46. @Excel(name = "运单号")
  47. private String orderNo;
  48. @Excel(name = "司机电话")
  49. private String driverTel;
  50. @Excel(name = "状态")
  51. private String orderName;
  52. @Excel(name = "接单日期")
  53. private String acceptDate;
  54. @Excel(name = "提箱日期")
  55. private String loadDate;
  56. @Excel(name = "还柜日期")
  57. private String unLoadDate;
  58. @Excel(name = "应收结算金额")
  59. private BigDecimal amtDr;
  60. @Excel(name = "应付结算金额")
  61. private BigDecimal amtCr;
  62. @Excel(name = "已收结算金额")
  63. private BigDecimal stlAmtDr;
  64. @Excel(name = "已付结算金额")
  65. private BigDecimal stlAmtCr;
  66. @Excel(name = "业务利润")
  67. private BigDecimal profitBill;
  68. @Excel(name = "车利润")
  69. private BigDecimal profitCar;
  70. @Excel(name = "单据类型")
  71. private String billKind;
  72. /**
  73. * 检索条件:结算单位
  74. */
  75. private Long tCorpId;
  76. /**
  77. * 检索条件:接单日期区间
  78. */
  79. private List<String> acceptDateList;
  80. /**
  81. * 检索条件:对账日期区间
  82. */
  83. private List<String> accchkDateList;
  84. /**
  85. * 检索条件:结算状态
  86. */
  87. private String stlStatus;
  88. /**
  89. * 检索条件:对账状态
  90. */
  91. private String accchkStatus;
  92. /**
  93. * 检索条件:开票状态
  94. */
  95. private String invStatus;
  96. public String getBillKind() {
  97. return billKind;
  98. }
  99. public void setBillKind(String billKind) {
  100. this.billKind = billKind;
  101. }
  102. public Long gettCorpId() {
  103. return tCorpId;
  104. }
  105. public void settCorpId(Long tCorpId) {
  106. this.tCorpId = tCorpId;
  107. }
  108. public List<String> getAcceptDateList() {
  109. return acceptDateList;
  110. }
  111. public void setAcceptDateList(List<String> acceptDateList) {
  112. this.acceptDateList = acceptDateList;
  113. }
  114. public List<String> getAccchkDateList() {
  115. return accchkDateList;
  116. }
  117. public void setAccchkDateList(List<String> accchkDateList) {
  118. this.accchkDateList = accchkDateList;
  119. }
  120. public String getMblno() {
  121. return mblno;
  122. }
  123. public void setMblno(String mblno) {
  124. this.mblno = mblno;
  125. }
  126. public Long getId() {
  127. return id;
  128. }
  129. public void setId(Long id) {
  130. this.id = id;
  131. }
  132. public String getMdLoadDate() {
  133. return mdLoadDate;
  134. }
  135. public void setMdLoadDate(String mdLoadDate) {
  136. this.mdLoadDate = mdLoadDate;
  137. }
  138. public String getBillType() {
  139. return billType;
  140. }
  141. public void setBillType(String billType) {
  142. this.billType = billType;
  143. }
  144. public String getTransType() {
  145. return transType;
  146. }
  147. public void setTransType(String transType) {
  148. this.transType = transType;
  149. }
  150. public String getCorpId() {
  151. return corpId;
  152. }
  153. public void setCorpId(String corpId) {
  154. this.corpId = corpId;
  155. }
  156. public String getYsl() {
  157. return ysl;
  158. }
  159. public void setYsl(String ysl) {
  160. this.ysl = ysl;
  161. }
  162. public String getVoy() {
  163. return voy;
  164. }
  165. public void setVoy(String voy) {
  166. this.voy = voy;
  167. }
  168. public Long getCntrQty() {
  169. return cntrQty;
  170. }
  171. public void setCntrQty(Long cntrQty) {
  172. this.cntrQty = cntrQty;
  173. }
  174. public String getCntrId() {
  175. return cntrId;
  176. }
  177. public void setCntrId(String cntrId) {
  178. this.cntrId = cntrId;
  179. }
  180. public String getGoodsId() {
  181. return goodsId;
  182. }
  183. public void setGoodsId(String goodsId) {
  184. this.goodsId = goodsId;
  185. }
  186. public BigDecimal getCntrWeight() {
  187. return cntrWeight;
  188. }
  189. public void setCntrWeight(BigDecimal cntrWeight) {
  190. this.cntrWeight = cntrWeight;
  191. }
  192. public String getPolId() {
  193. return polId;
  194. }
  195. public void setPolId(String polId) {
  196. this.polId = polId;
  197. }
  198. public String getPodId() {
  199. return podId;
  200. }
  201. public void setPodId(String podId) {
  202. this.podId = podId;
  203. }
  204. public String getLoadAddr() {
  205. return loadAddr;
  206. }
  207. public void setLoadAddr(String loadAddr) {
  208. this.loadAddr = loadAddr;
  209. }
  210. public String getMdLoadAddr() {
  211. return mdLoadAddr;
  212. }
  213. public void setMdLoadAddr(String mdLoadAddr) {
  214. this.mdLoadAddr = mdLoadAddr;
  215. }
  216. public String getUnLoadAddr() {
  217. return unLoadAddr;
  218. }
  219. public void setUnLoadAddr(String unLoadAddr) {
  220. this.unLoadAddr = unLoadAddr;
  221. }
  222. public String getCarregNo() {
  223. return carregNo;
  224. }
  225. public void setCarregNo(String carregNo) {
  226. this.carregNo = carregNo;
  227. }
  228. public String getDriverName() {
  229. return driverName;
  230. }
  231. public void setDriverName(String driverName) {
  232. this.driverName = driverName;
  233. }
  234. public String getOrderNo() {
  235. return orderNo;
  236. }
  237. public void setOrderNo(String orderNo) {
  238. this.orderNo = orderNo;
  239. }
  240. public String getDriverTel() {
  241. return driverTel;
  242. }
  243. public void setDriverTel(String driverTel) {
  244. this.driverTel = driverTel;
  245. }
  246. public String getOrderName() {
  247. return orderName;
  248. }
  249. public void setOrderName(String orderName) {
  250. this.orderName = orderName;
  251. }
  252. public String getAcceptDate() {
  253. return acceptDate;
  254. }
  255. public void setAcceptDate(String acceptDate) {
  256. this.acceptDate = acceptDate;
  257. }
  258. public String getLoadDate() {
  259. return loadDate;
  260. }
  261. public void setLoadDate(String loadDate) {
  262. this.loadDate = loadDate;
  263. }
  264. public String getUnLoadDate() {
  265. return unLoadDate;
  266. }
  267. public void setUnLoadDate(String unLoadDate) {
  268. this.unLoadDate = unLoadDate;
  269. }
  270. public BigDecimal getAmtDr() {
  271. return amtDr;
  272. }
  273. public void setAmtDr(BigDecimal amtDr) {
  274. this.amtDr = amtDr;
  275. }
  276. public BigDecimal getAmtCr() {
  277. return amtCr;
  278. }
  279. public void setAmtCr(BigDecimal amtCr) {
  280. this.amtCr = amtCr;
  281. }
  282. public BigDecimal getStlAmtDr() {
  283. return stlAmtDr;
  284. }
  285. public void setStlAmtDr(BigDecimal stlAmtDr) {
  286. this.stlAmtDr = stlAmtDr;
  287. }
  288. public BigDecimal getStlAmtCr() {
  289. return stlAmtCr;
  290. }
  291. public void setStlAmtCr(BigDecimal stlAmtCr) {
  292. this.stlAmtCr = stlAmtCr;
  293. }
  294. public BigDecimal getProfitBill() {
  295. return profitBill;
  296. }
  297. public void setProfitBill(BigDecimal profitBill) {
  298. this.profitBill = profitBill;
  299. }
  300. public BigDecimal getProfitCar() {
  301. return profitCar;
  302. }
  303. public void setProfitCar(BigDecimal profitCar) {
  304. this.profitCar = profitCar;
  305. }
  306. public String getStlStatus() {
  307. return stlStatus;
  308. }
  309. public void setStlStatus(String stlStatus) {
  310. this.stlStatus = stlStatus;
  311. }
  312. public String getAccchkStatus() {
  313. return accchkStatus;
  314. }
  315. public void setAccchkStatus(String accchkStatus) {
  316. this.accchkStatus = accchkStatus;
  317. }
  318. public String getInvStatus() {
  319. return invStatus;
  320. }
  321. public void setInvStatus(String invStatus) {
  322. this.invStatus = invStatus;
  323. }
  324. @Override
  325. public String toString() {
  326. return "VehicleLedgerExcel{" +
  327. "id=" + id +
  328. ", mblno='" + mblno + '\'' +
  329. ", mdLoadDate='" + mdLoadDate + '\'' +
  330. ", billType='" + billType + '\'' +
  331. ", transType='" + transType + '\'' +
  332. ", corpId='" + corpId + '\'' +
  333. ", ysl='" + ysl + '\'' +
  334. ", voy='" + voy + '\'' +
  335. ", cntrQty=" + cntrQty +
  336. ", cntrId='" + cntrId + '\'' +
  337. ", goodsId='" + goodsId + '\'' +
  338. ", cntrWeight=" + cntrWeight +
  339. ", polId='" + polId + '\'' +
  340. ", podId='" + podId + '\'' +
  341. ", loadAddr='" + loadAddr + '\'' +
  342. ", mdLoadAddr='" + mdLoadAddr + '\'' +
  343. ", unLoadAddr='" + unLoadAddr + '\'' +
  344. ", carregNo='" + carregNo + '\'' +
  345. ", driverName='" + driverName + '\'' +
  346. ", orderNo='" + orderNo + '\'' +
  347. ", driverTel='" + driverTel + '\'' +
  348. ", orderName='" + orderName + '\'' +
  349. ", acceptDate='" + acceptDate + '\'' +
  350. ", loadDate='" + loadDate + '\'' +
  351. ", unLoadDate='" + unLoadDate + '\'' +
  352. ", amtDr=" + amtDr +
  353. ", amtCr=" + amtCr +
  354. ", stlAmtDr=" + stlAmtDr +
  355. ", stlAmtCr=" + stlAmtCr +
  356. ", profitBill=" + profitBill +
  357. ", profitCar=" + profitCar +
  358. ", tCorpId=" + tCorpId +
  359. ", acceptDateList=" + acceptDateList +
  360. ", accchkDateList=" + accchkDateList +
  361. ", stlStatus='" + stlStatus + '\'' +
  362. ", accchkStatus='" + accchkStatus + '\'' +
  363. ", invStatus='" + invStatus + '\'' +
  364. '}';
  365. }
  366. }