TWareHouseFees.java 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  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 Long[] 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. * 是否对账 0 否 1 是 ; 结算状态 0 未收 1 全部
  50. */
  51. @Excel(name = "对账")
  52. private String fReconciliation;
  53. /**
  54. * 费用状态
  55. */
  56. @Excel(name = "费用状态")
  57. private Long fBillstatus;
  58. /**
  59. * 唛头
  60. */
  61. @Excel(name = "唛头")
  62. private String fMarks;
  63. /** 明细品名合计 */
  64. @Excel(name = "明细品名合计")
  65. private String fProductName;
  66. /**
  67. * 查询时间区间 审核日期
  68. */
  69. private List<String> timeExamine;
  70. public List<String> getTimeExamine() {
  71. return timeExamine;
  72. }
  73. public void setTimeExamine(List<String> timeExamine) {
  74. this.timeExamine = timeExamine;
  75. }
  76. /**
  77. * 查询时间区间 对账日期
  78. */
  79. private List<String> timeReconci;
  80. public List<String> getTimeReconci() {
  81. return timeReconci;
  82. }
  83. public void setTimeReconci(List<String> timeReconci) {
  84. this.timeReconci = timeReconci;
  85. }
  86. /**
  87. * 查询时间区间 入(出)库日期
  88. */
  89. private List<String> timeInterval;
  90. public void settimeInterval(List<String> timeInterval) {
  91. this.timeInterval = timeInterval;
  92. }
  93. public List<String> gettimeInterval() {
  94. return timeInterval;
  95. }
  96. public String getfMarks() {
  97. return fMarks;
  98. }
  99. public void setfMarks(String fMarks) {
  100. this.fMarks = fMarks;
  101. }
  102. public Long getfBillstatus() {
  103. return fBillstatus;
  104. }
  105. public void setfBillstatus(Long fBillstatus) {
  106. this.fBillstatus = fBillstatus;
  107. }
  108. public String getfProductName() {
  109. return fProductName;
  110. }
  111. public void setfProductName(String fProductName) {
  112. this.fProductName = fProductName;
  113. }
  114. public String getfStatementNo() {
  115. return fStatementNo;
  116. }
  117. public void setfStatementNo(String fStatementNo) {
  118. this.fStatementNo = fStatementNo;
  119. }
  120. public Long getfCorpid() {
  121. return fCorpid;
  122. }
  123. public void setfCorpid(Long fCorpid) {
  124. this.fCorpid = fCorpid;
  125. }
  126. public Long getfToCorpid() {
  127. return fToCorpid;
  128. }
  129. public void setfToCorpid(Long fToCorpid) {
  130. this.fToCorpid = fToCorpid;
  131. }
  132. public String getfMblno() {
  133. return fMblno;
  134. }
  135. public void setfMblno(String fMblno) {
  136. this.fMblno = fMblno;
  137. }
  138. public String getfDc() {
  139. return fDc;
  140. }
  141. public void setfDc(String fDc) {
  142. this.fDc = fDc;
  143. }
  144. public Long[] getfFeeid() {
  145. return fFeeid;
  146. }
  147. public void setfFeeid(Long[] fFeeid) {
  148. this.fFeeid = fFeeid;
  149. }
  150. public Date getfBsdate() {
  151. return fBsdate;
  152. }
  153. public void setfBsdate(Date fBsdate) {
  154. this.fBsdate = fBsdate;
  155. }
  156. public Date getfAccbilldate() {
  157. return fAccbilldate;
  158. }
  159. public void setfAccbilldate(Date fAccbilldate) {
  160. this.fAccbilldate = fAccbilldate;
  161. }
  162. public String getfReconciliation() {
  163. return fReconciliation;
  164. }
  165. public void setfReconciliation(String fReconciliation) {
  166. this.fReconciliation = fReconciliation;
  167. }
  168. }