HandleExcel.java 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. package com.ruoyi.finance.shipping;
  2. import com.ruoyi.common.annotation.Excel;
  3. import java.io.Serializable;
  4. import java.math.BigDecimal;
  5. import java.util.Date;
  6. /**
  7. * 凯和导出应收总账对象
  8. */
  9. public class HandleExcel implements Serializable {
  10. private static final long serialVersionUID = 1L;
  11. /**
  12. * 船名
  13. */
  14. @Excel(name = "船名")
  15. private String shipsName;
  16. /**
  17. *航次
  18. */
  19. @Excel(name = "航次")
  20. private String voyage;
  21. /**
  22. *结算单位
  23. */
  24. @Excel(name = "结算单位")
  25. private String unitOfAccount;
  26. /**
  27. *提单号
  28. */
  29. @Excel(name = "提单号")
  30. private String blNo;
  31. /**
  32. *起运港
  33. */
  34. @Excel(name = "起运港")
  35. private String portOfLoading;
  36. /**
  37. *目的港
  38. */
  39. @Excel(name = "目的港")
  40. private String destination;
  41. /**
  42. *开船日期
  43. */
  44. @Excel(name = "开船日期",dateFormat = "yyyy-MM-dd")
  45. private Date sailingDate;
  46. /**
  47. *审核日期
  48. */
  49. @Excel(name = "审核日期",dateFormat = "yyyy-MM-dd")
  50. private Date auditDate;
  51. /**
  52. *应收金额
  53. */
  54. @Excel(name = "应付金额")
  55. private BigDecimal receivable;
  56. /**
  57. *实收金额
  58. */
  59. @Excel(name = "实付金额")
  60. private BigDecimal handle;
  61. /**
  62. *未收金额
  63. */
  64. @Excel(name = "未付金额")
  65. private BigDecimal profit;
  66. public String getShipsName() {
  67. return shipsName;
  68. }
  69. public void setShipsName(String shipsName) {
  70. this.shipsName = shipsName;
  71. }
  72. public String getVoyage() {
  73. return voyage;
  74. }
  75. public void setVoyage(String voyage) {
  76. this.voyage = voyage;
  77. }
  78. public String getUnitOfAccount() {
  79. return unitOfAccount;
  80. }
  81. public void setUnitOfAccount(String unitOfAccount) {
  82. this.unitOfAccount = unitOfAccount;
  83. }
  84. public String getBlNo() {
  85. return blNo;
  86. }
  87. public void setBlNo(String blNo) {
  88. this.blNo = blNo;
  89. }
  90. public String getPortOfLoading() {
  91. return portOfLoading;
  92. }
  93. public void setPortOfLoading(String portOfLoading) {
  94. this.portOfLoading = portOfLoading;
  95. }
  96. public String getDestination() {
  97. return destination;
  98. }
  99. public void setDestination(String destination) {
  100. this.destination = destination;
  101. }
  102. public Date getSailingDate() {
  103. return sailingDate;
  104. }
  105. public void setSailingDate(Date sailingDate) {
  106. this.sailingDate = sailingDate;
  107. }
  108. public Date getAuditDate() {
  109. return auditDate;
  110. }
  111. public void setAuditDate(Date auditDate) {
  112. this.auditDate = auditDate;
  113. }
  114. public BigDecimal getReceivable() {
  115. return receivable;
  116. }
  117. public void setReceivable(BigDecimal receivable) {
  118. this.receivable = receivable;
  119. }
  120. public BigDecimal getHandle() {
  121. return handle;
  122. }
  123. public void setHandle(BigDecimal handle) {
  124. this.handle = handle;
  125. }
  126. public BigDecimal getProfit() {
  127. return profit;
  128. }
  129. public void setProfit(BigDecimal profit) {
  130. this.profit = profit;
  131. }
  132. @Override
  133. public String toString() {
  134. return "ReceivableExcel{" +
  135. "shipsName='" + shipsName + '\'' +
  136. ", voyage='" + voyage + '\'' +
  137. ", unitOfAccount='" + unitOfAccount + '\'' +
  138. ", blNo='" + blNo + '\'' +
  139. ", portOfLoading='" + portOfLoading + '\'' +
  140. ", destination='" + destination + '\'' +
  141. ", sailingDate=" + sailingDate +
  142. ", auditDate=" + auditDate +
  143. ", receivable=" + receivable +
  144. ", handle=" + handle +
  145. ", profit=" + profit +
  146. '}';
  147. }
  148. }