ReceivableExcel.java 3.8 KB

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