VehicleLedgerExcel.java 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473
  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. /**
  71. * 检索条件:结算单位
  72. */
  73. private Long tCorpId;
  74. /**
  75. * 检索条件:接单日期区间
  76. */
  77. private List<String> acceptDateList;
  78. /**
  79. * 检索条件:对账日期区间
  80. */
  81. private List<String> accchkDateList;
  82. /**
  83. * 检索条件:结算状态
  84. */
  85. private String stlStatus;
  86. /**
  87. * 检索条件:对账状态
  88. */
  89. private String accchkStatus;
  90. /**
  91. * 检索条件:开票状态
  92. */
  93. private String invStatus;
  94. public Long gettCorpId() {
  95. return tCorpId;
  96. }
  97. public void settCorpId(Long tCorpId) {
  98. this.tCorpId = tCorpId;
  99. }
  100. public List<String> getAcceptDateList() {
  101. return acceptDateList;
  102. }
  103. public void setAcceptDateList(List<String> acceptDateList) {
  104. this.acceptDateList = acceptDateList;
  105. }
  106. public List<String> getAccchkDateList() {
  107. return accchkDateList;
  108. }
  109. public void setAccchkDateList(List<String> accchkDateList) {
  110. this.accchkDateList = accchkDateList;
  111. }
  112. public String getMblno() {
  113. return mblno;
  114. }
  115. public void setMblno(String mblno) {
  116. this.mblno = mblno;
  117. }
  118. public Long getId() {
  119. return id;
  120. }
  121. public void setId(Long id) {
  122. this.id = id;
  123. }
  124. public String getMdLoadDate() {
  125. return mdLoadDate;
  126. }
  127. public void setMdLoadDate(String mdLoadDate) {
  128. this.mdLoadDate = mdLoadDate;
  129. }
  130. public String getBillType() {
  131. return billType;
  132. }
  133. public void setBillType(String billType) {
  134. this.billType = billType;
  135. }
  136. public String getTransType() {
  137. return transType;
  138. }
  139. public void setTransType(String transType) {
  140. this.transType = transType;
  141. }
  142. public String getCorpId() {
  143. return corpId;
  144. }
  145. public void setCorpId(String corpId) {
  146. this.corpId = corpId;
  147. }
  148. public String getYsl() {
  149. return ysl;
  150. }
  151. public void setYsl(String ysl) {
  152. this.ysl = ysl;
  153. }
  154. public String getVoy() {
  155. return voy;
  156. }
  157. public void setVoy(String voy) {
  158. this.voy = voy;
  159. }
  160. public Long getCntrQty() {
  161. return cntrQty;
  162. }
  163. public void setCntrQty(Long cntrQty) {
  164. this.cntrQty = cntrQty;
  165. }
  166. public String getCntrId() {
  167. return cntrId;
  168. }
  169. public void setCntrId(String cntrId) {
  170. this.cntrId = cntrId;
  171. }
  172. public String getGoodsId() {
  173. return goodsId;
  174. }
  175. public void setGoodsId(String goodsId) {
  176. this.goodsId = goodsId;
  177. }
  178. public BigDecimal getCntrWeight() {
  179. return cntrWeight;
  180. }
  181. public void setCntrWeight(BigDecimal cntrWeight) {
  182. this.cntrWeight = cntrWeight;
  183. }
  184. public String getPolId() {
  185. return polId;
  186. }
  187. public void setPolId(String polId) {
  188. this.polId = polId;
  189. }
  190. public String getPodId() {
  191. return podId;
  192. }
  193. public void setPodId(String podId) {
  194. this.podId = podId;
  195. }
  196. public String getLoadAddr() {
  197. return loadAddr;
  198. }
  199. public void setLoadAddr(String loadAddr) {
  200. this.loadAddr = loadAddr;
  201. }
  202. public String getMdLoadAddr() {
  203. return mdLoadAddr;
  204. }
  205. public void setMdLoadAddr(String mdLoadAddr) {
  206. this.mdLoadAddr = mdLoadAddr;
  207. }
  208. public String getUnLoadAddr() {
  209. return unLoadAddr;
  210. }
  211. public void setUnLoadAddr(String unLoadAddr) {
  212. this.unLoadAddr = unLoadAddr;
  213. }
  214. public String getCarregNo() {
  215. return carregNo;
  216. }
  217. public void setCarregNo(String carregNo) {
  218. this.carregNo = carregNo;
  219. }
  220. public String getDriverName() {
  221. return driverName;
  222. }
  223. public void setDriverName(String driverName) {
  224. this.driverName = driverName;
  225. }
  226. public String getOrderNo() {
  227. return orderNo;
  228. }
  229. public void setOrderNo(String orderNo) {
  230. this.orderNo = orderNo;
  231. }
  232. public String getDriverTel() {
  233. return driverTel;
  234. }
  235. public void setDriverTel(String driverTel) {
  236. this.driverTel = driverTel;
  237. }
  238. public String getOrderName() {
  239. return orderName;
  240. }
  241. public void setOrderName(String orderName) {
  242. this.orderName = orderName;
  243. }
  244. public String getAcceptDate() {
  245. return acceptDate;
  246. }
  247. public void setAcceptDate(String acceptDate) {
  248. this.acceptDate = acceptDate;
  249. }
  250. public String getLoadDate() {
  251. return loadDate;
  252. }
  253. public void setLoadDate(String loadDate) {
  254. this.loadDate = loadDate;
  255. }
  256. public String getUnLoadDate() {
  257. return unLoadDate;
  258. }
  259. public void setUnLoadDate(String unLoadDate) {
  260. this.unLoadDate = unLoadDate;
  261. }
  262. public BigDecimal getAmtDr() {
  263. return amtDr;
  264. }
  265. public void setAmtDr(BigDecimal amtDr) {
  266. this.amtDr = amtDr;
  267. }
  268. public BigDecimal getAmtCr() {
  269. return amtCr;
  270. }
  271. public void setAmtCr(BigDecimal amtCr) {
  272. this.amtCr = amtCr;
  273. }
  274. public BigDecimal getStlAmtDr() {
  275. return stlAmtDr;
  276. }
  277. public void setStlAmtDr(BigDecimal stlAmtDr) {
  278. this.stlAmtDr = stlAmtDr;
  279. }
  280. public BigDecimal getStlAmtCr() {
  281. return stlAmtCr;
  282. }
  283. public void setStlAmtCr(BigDecimal stlAmtCr) {
  284. this.stlAmtCr = stlAmtCr;
  285. }
  286. public BigDecimal getProfitBill() {
  287. return profitBill;
  288. }
  289. public void setProfitBill(BigDecimal profitBill) {
  290. this.profitBill = profitBill;
  291. }
  292. public BigDecimal getProfitCar() {
  293. return profitCar;
  294. }
  295. public void setProfitCar(BigDecimal profitCar) {
  296. this.profitCar = profitCar;
  297. }
  298. public String getStlStatus() {
  299. return stlStatus;
  300. }
  301. public void setStlStatus(String stlStatus) {
  302. this.stlStatus = stlStatus;
  303. }
  304. public String getAccchkStatus() {
  305. return accchkStatus;
  306. }
  307. public void setAccchkStatus(String accchkStatus) {
  308. this.accchkStatus = accchkStatus;
  309. }
  310. public String getInvStatus() {
  311. return invStatus;
  312. }
  313. public void setInvStatus(String invStatus) {
  314. this.invStatus = invStatus;
  315. }
  316. @Override
  317. public String toString() {
  318. return "VehicleLedgerExcel{" +
  319. "id=" + id +
  320. ", mblno='" + mblno + '\'' +
  321. ", mdLoadDate='" + mdLoadDate + '\'' +
  322. ", billType='" + billType + '\'' +
  323. ", transType='" + transType + '\'' +
  324. ", corpId='" + corpId + '\'' +
  325. ", ysl='" + ysl + '\'' +
  326. ", voy='" + voy + '\'' +
  327. ", cntrQty=" + cntrQty +
  328. ", cntrId='" + cntrId + '\'' +
  329. ", goodsId='" + goodsId + '\'' +
  330. ", cntrWeight=" + cntrWeight +
  331. ", polId='" + polId + '\'' +
  332. ", podId='" + podId + '\'' +
  333. ", loadAddr='" + loadAddr + '\'' +
  334. ", mdLoadAddr='" + mdLoadAddr + '\'' +
  335. ", unLoadAddr='" + unLoadAddr + '\'' +
  336. ", carregNo='" + carregNo + '\'' +
  337. ", driverName='" + driverName + '\'' +
  338. ", orderNo='" + orderNo + '\'' +
  339. ", driverTel='" + driverTel + '\'' +
  340. ", orderName='" + orderName + '\'' +
  341. ", acceptDate='" + acceptDate + '\'' +
  342. ", loadDate='" + loadDate + '\'' +
  343. ", unLoadDate='" + unLoadDate + '\'' +
  344. ", amtDr=" + amtDr +
  345. ", amtCr=" + amtCr +
  346. ", stlAmtDr=" + stlAmtDr +
  347. ", stlAmtCr=" + stlAmtCr +
  348. ", profitBill=" + profitBill +
  349. ", profitCar=" + profitCar +
  350. ", tCorpId=" + tCorpId +
  351. ", acceptDateList=" + acceptDateList +
  352. ", accchkDateList=" + accchkDateList +
  353. ", stlStatus='" + stlStatus + '\'' +
  354. ", accchkStatus='" + accchkStatus + '\'' +
  355. ", invStatus='" + invStatus + '\'' +
  356. '}';
  357. }
  358. }