ExportFinancial.java 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. package com.ruoyi.shipping.excel;
  2. import java.math.BigDecimal;
  3. /**
  4. * 凯和导出对账明细
  5. */
  6. public class ExportFinancial {
  7. private static final long serialVersionUID = 1L;
  8. /**
  9. * 序号
  10. */
  11. private Long rankNo;
  12. /**
  13. * 提单号
  14. */
  15. private String fMblNo;
  16. /**
  17. * 始发港
  18. */
  19. private String portOfDeparture;
  20. /**
  21. * 目的港
  22. */
  23. private String destinationPort;
  24. /**
  25. * 货名
  26. */
  27. private String goodName;
  28. /**
  29. * 箱量
  30. */
  31. private Long fCnTrCount;
  32. /**
  33. * 规格
  34. */
  35. private String specification ;
  36. /**
  37. * 单价
  38. */
  39. private BigDecimal fUnitPrice;
  40. /**
  41. * 合计
  42. */
  43. private BigDecimal fAmount;
  44. /**
  45. * 起运港运输条款
  46. */
  47. private String fServiceitems;
  48. /**
  49. * 目的港运输条款
  50. */
  51. private String fServiceitemsNew;
  52. public String getfServiceitemsNew() {
  53. return fServiceitemsNew;
  54. }
  55. public void setfServiceitemsNew(String fServiceitemsNew) {
  56. this.fServiceitemsNew = fServiceitemsNew;
  57. }
  58. public Long getRankNo() {
  59. return rankNo;
  60. }
  61. public void setRankNo(Long rankNo) {
  62. this.rankNo = rankNo;
  63. }
  64. public String getfMblNo() {
  65. return fMblNo;
  66. }
  67. public void setfMblNo(String fMblNo) {
  68. this.fMblNo = fMblNo;
  69. }
  70. public String getPortOfDeparture() {
  71. return portOfDeparture;
  72. }
  73. public void setPortOfDeparture(String portOfDeparture) {
  74. this.portOfDeparture = portOfDeparture;
  75. }
  76. public String getDestinationPort() {
  77. return destinationPort;
  78. }
  79. public void setDestinationPort(String destinationPort) {
  80. this.destinationPort = destinationPort;
  81. }
  82. public String getGoodName() {
  83. return goodName;
  84. }
  85. public void setGoodName(String goodName) {
  86. this.goodName = goodName;
  87. }
  88. public Long getfCnTrCount() {
  89. return fCnTrCount;
  90. }
  91. public void setfCnTrCount(Long fCnTrCount) {
  92. this.fCnTrCount = fCnTrCount;
  93. }
  94. public String getSpecification() {
  95. return specification;
  96. }
  97. public void setSpecification(String specification) {
  98. this.specification = specification;
  99. }
  100. public BigDecimal getfUnitPrice() {
  101. return fUnitPrice;
  102. }
  103. public void setfUnitPrice(BigDecimal fUnitPrice) {
  104. this.fUnitPrice = fUnitPrice;
  105. }
  106. public BigDecimal getfAmount() {
  107. return fAmount;
  108. }
  109. public void setfAmount(BigDecimal fAmount) {
  110. this.fAmount = fAmount;
  111. }
  112. public String getfServiceitems() {
  113. return fServiceitems;
  114. }
  115. public void setfServiceitems(String fServiceitems) {
  116. this.fServiceitems = fServiceitems;
  117. }
  118. @Override
  119. public String toString() {
  120. return "ExportFinancial{" +
  121. "rankNo=" + rankNo +
  122. ", fMblNo='" + fMblNo + '\'' +
  123. ", portOfDeparture='" + portOfDeparture + '\'' +
  124. ", destinationPort='" + destinationPort + '\'' +
  125. ", goodName='" + goodName + '\'' +
  126. ", fCnTrCount=" + fCnTrCount +
  127. ", specification='" + specification + '\'' +
  128. ", fUnitPrice=" + fUnitPrice +
  129. ", fAmount=" + fAmount +
  130. ", fServiceitems=" + fServiceitems +
  131. ", fServiceitemsNew=" + fServiceitemsNew +
  132. '}';
  133. }
  134. }