Receivable.java 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. package com.ruoyi.reportManagement.excel;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import com.ruoyi.common.annotation.Excel;
  4. import java.util.Date;
  5. /**
  6. * 入库导出
  7. *
  8. * @author ruoyi
  9. * @date 2020-12-11
  10. */
  11. public class Receivable {
  12. private static final long serialVersionUID = 1L;
  13. /**
  14. * 客户名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name
  15. */
  16. @Excel(name = "货权方")
  17. private String fName;
  18. /**
  19. * 入(出)库日期
  20. */
  21. @Excel(name = "结算单位")
  22. private String fFeesName;
  23. /**
  24. * 提单号
  25. */
  26. @Excel(name = "提单号")
  27. private String fMblno;
  28. /**
  29. * 提单号
  30. */
  31. @Excel(name = "货物名称")
  32. private String fProductName;
  33. /**
  34. * 唛头
  35. */
  36. @Excel(name = "品牌")
  37. private String fMarks;
  38. /**
  39. * 入(出)库日期
  40. */
  41. @JsonFormat(pattern = "yyyy-MM-dd")
  42. @Excel(name = "审核日期", width = 30, dateFormat = "yyyy-MM-dd")
  43. private Date fReviewDate;
  44. /**
  45. * 应收金额
  46. */
  47. @Excel(name = "应收金额")
  48. private Double fAmount;
  49. /**
  50. * 实收金额
  51. */
  52. @Excel(name = "实收金额")
  53. private Double fStlamount;
  54. /**
  55. * 未收金额
  56. */
  57. @Excel(name = "未收金额")
  58. private Double nnfinished;
  59. public String getfName() {
  60. return fName;
  61. }
  62. public void setfName(String fName) {
  63. this.fName = fName;
  64. }
  65. public String getfFeesName() {
  66. return fFeesName;
  67. }
  68. public void setfFeesName(String fFeesName) {
  69. this.fFeesName = fFeesName;
  70. }
  71. public String getfMblno() {
  72. return fMblno;
  73. }
  74. public void setfMblno(String fMblno) {
  75. this.fMblno = fMblno;
  76. }
  77. public String getfProductName() {
  78. return fProductName;
  79. }
  80. public void setfProductName(String fProductName) {
  81. this.fProductName = fProductName;
  82. }
  83. public String getfMarks() {
  84. return fMarks;
  85. }
  86. public void setfMarks(String fMarks) {
  87. this.fMarks = fMarks;
  88. }
  89. public Date getfReviewDate() {
  90. return fReviewDate;
  91. }
  92. public void setfReviewDate(Date fReviewDate) {
  93. this.fReviewDate = fReviewDate;
  94. }
  95. public Double getfAmount() {
  96. return fAmount;
  97. }
  98. public void setfAmount(Double fAmount) {
  99. this.fAmount = fAmount;
  100. }
  101. public Double getfStlamount() {
  102. return fStlamount;
  103. }
  104. public void setfStlamount(Double fStlamount) {
  105. this.fStlamount = fStlamount;
  106. }
  107. public Double getNnfinished() {
  108. return nnfinished;
  109. }
  110. public void setNnfinished(Double nnfinished) {
  111. this.nnfinished = nnfinished;
  112. }
  113. }