TWareHouseFees.java 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. package com.ruoyi.finance.domain;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import com.ruoyi.common.annotation.Excel;
  4. import java.util.Date;
  5. import java.util.List;
  6. public class TWareHouseFees {
  7. /**
  8. * 客户名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name
  9. */
  10. @Excel(name = "客户名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name")
  11. private Long fCorpid;
  12. /**
  13. * 结算客户名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name
  14. */
  15. @Excel(name = "客户名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name")
  16. private Long fToCorpid;
  17. /**
  18. * 提单号
  19. */
  20. @Excel(name = "提单号")
  21. private String fMblno;
  22. /**
  23. * 收、付,D:收 C 付
  24. */
  25. @Excel(name = "收、付,D:收 C 付")
  26. private String fDc;
  27. /**
  28. * 费用名称,存储id 显示名称,t_fees 中的no或 name,模糊查找选择后,存储f_id,显示name
  29. */
  30. @Excel(name = "费用名称,存储id 显示名称,t_fees 中的no或 name,模糊查找选择后,存储f_id,显示name")
  31. private String fFeeid;
  32. /**
  33. * 入(出)库日期
  34. */
  35. @Excel(name = "入", readConverterExp = "出=")
  36. private Date fBsdate;
  37. /**
  38. * 账单日期(审批流结束后更新)
  39. */
  40. @JsonFormat(pattern = "yyyy-MM-dd")
  41. @Excel(name = "账单日期(审批流结束后更新)", width = 30, dateFormat = "yyyy-MM-dd")
  42. private Date fAccbilldate;
  43. /**
  44. * 对账单号
  45. */
  46. @Excel(name = "对账单号")
  47. private String fStatementNo;
  48. /**
  49. * 对账单号
  50. */
  51. @Excel(name = "对账")
  52. private String fReconciliation;
  53. /**
  54. * 查询时间区间 审核日期
  55. */
  56. private List<String> timeExamine;
  57. public List<String> getTimeExamine() {
  58. return timeExamine;
  59. }
  60. public void setTimeExamine(List<String> timeExamine) {
  61. this.timeExamine = timeExamine;
  62. }
  63. /**
  64. * 查询时间区间 入(出)库日期
  65. */
  66. private List<String> timeInterval;
  67. public void settimeInterval(List<String> timeInterval) {
  68. this.timeInterval = timeInterval;
  69. }
  70. public List<String> gettimeInterval() {
  71. return timeInterval;
  72. }
  73. public String getfStatementNo() {
  74. return fStatementNo;
  75. }
  76. public void setfStatementNo(String fStatementNo) {
  77. this.fStatementNo = fStatementNo;
  78. }
  79. public Long getfCorpid() {
  80. return fCorpid;
  81. }
  82. public void setfCorpid(Long fCorpid) {
  83. this.fCorpid = fCorpid;
  84. }
  85. public Long getfToCorpid() {
  86. return fToCorpid;
  87. }
  88. public void setfToCorpid(Long fToCorpid) {
  89. this.fToCorpid = fToCorpid;
  90. }
  91. public String getfMblno() {
  92. return fMblno;
  93. }
  94. public void setfMblno(String fMblno) {
  95. this.fMblno = fMblno;
  96. }
  97. public String getfDc() {
  98. return fDc;
  99. }
  100. public void setfDc(String fDc) {
  101. this.fDc = fDc;
  102. }
  103. public String getfFeeid() {
  104. return fFeeid;
  105. }
  106. public void setfFeeid(String fFeeid) {
  107. this.fFeeid = fFeeid;
  108. }
  109. public Date getfBsdate() {
  110. return fBsdate;
  111. }
  112. public void setfBsdate(Date fBsdate) {
  113. this.fBsdate = fBsdate;
  114. }
  115. public Date getfAccbilldate() {
  116. return fAccbilldate;
  117. }
  118. public void setfAccbilldate(Date fAccbilldate) {
  119. this.fAccbilldate = fAccbilldate;
  120. }
  121. public String getfReconciliation() {
  122. return fReconciliation;
  123. }
  124. public void setfReconciliation(String fReconciliation) {
  125. this.fReconciliation = fReconciliation;
  126. }
  127. }