Charge.java 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. package com.ruoyi.finance.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 Charge {
  12. private static final long serialVersionUID = 1L;
  13. /**
  14. * 结算单位
  15. */
  16. @Excel(name = "制单人")
  17. private String createBy;
  18. /**
  19. * 系统编号
  20. */
  21. @Excel(name = "系统编号")
  22. private String fBillno;
  23. /**
  24. * 货权方
  25. */
  26. @Excel(name = "货权方")
  27. private String fCtrlcorpid;
  28. /**
  29. * 入(出)库日期
  30. */
  31. @JsonFormat(pattern = "yyyy-MM-dd")
  32. @Excel(name = "账单日期", width = 30, dateFormat = "yyyy-MM-dd")
  33. private Date createTime;
  34. /**
  35. * 入(出)库日期
  36. */
  37. @JsonFormat(pattern = "yyyy-MM-dd")
  38. @Excel(name = "收费日期", width = 30, dateFormat = "yyyy-MM-dd")
  39. private Date fAccbilldate;
  40. /**
  41. * 提单号
  42. */
  43. @Excel(name = "提单号")
  44. private String tMblno;
  45. /**
  46. * 提单号
  47. */
  48. @Excel(name = "收费方式")
  49. private String chargingMethod;
  50. /**
  51. * 提单号
  52. */
  53. @Excel(name = "发票号")
  54. private String invoiceNo;
  55. /**
  56. * 提单号
  57. */
  58. @Excel(name = "收款银行")
  59. private String bank;
  60. /**
  61. * 提单号
  62. */
  63. @Excel(name = "水单号")
  64. private String waterBillNo;
  65. /**
  66. * 金额
  67. */
  68. @Excel(name = "应收合计")
  69. private Float fAmtdr;
  70. /**
  71. * 对账金额
  72. */
  73. @Excel(name = "实收合计")
  74. private Float fAmtcr;
  75. /**
  76. * 备注
  77. */
  78. @Excel(name = "备注")
  79. private String fRemarks;
  80. /**
  81. * 状态
  82. */
  83. @Excel(name = "状态")
  84. private String fBillstatus;
  85. public String getChargingMethod() {
  86. return chargingMethod;
  87. }
  88. public void setChargingMethod(String chargingMethod) {
  89. this.chargingMethod = chargingMethod;
  90. }
  91. public String getfBillstatus() {
  92. return fBillstatus;
  93. }
  94. public void setfBillstatus(String fBillstatus) {
  95. this.fBillstatus = fBillstatus;
  96. }
  97. public String getCreateBy() {
  98. return createBy;
  99. }
  100. public void setCreateBy(String createBy) {
  101. this.createBy = createBy;
  102. }
  103. public String getfBillno() {
  104. return fBillno;
  105. }
  106. public void setfBillno(String fBillno) {
  107. this.fBillno = fBillno;
  108. }
  109. public String getfCtrlcorpid() {
  110. return fCtrlcorpid;
  111. }
  112. public void setfCtrlcorpid(String fCtrlcorpid) {
  113. this.fCtrlcorpid = fCtrlcorpid;
  114. }
  115. public Date getCreateTime() {
  116. return createTime;
  117. }
  118. public void setCreateTime(Date createTime) {
  119. this.createTime = createTime;
  120. }
  121. public Date getfAccbilldate() {
  122. return fAccbilldate;
  123. }
  124. public void setfAccbilldate(Date fAccbilldate) {
  125. this.fAccbilldate = fAccbilldate;
  126. }
  127. public String gettMblno() {
  128. return tMblno;
  129. }
  130. public void settMblno(String tMblno) {
  131. this.tMblno = tMblno;
  132. }
  133. public String getInvoiceNo() {
  134. return invoiceNo;
  135. }
  136. public void setInvoiceNo(String invoiceNo) {
  137. this.invoiceNo = invoiceNo;
  138. }
  139. public String getBank() {
  140. return bank;
  141. }
  142. public void setBank(String bank) {
  143. this.bank = bank;
  144. }
  145. public String getWaterBillNo() {
  146. return waterBillNo;
  147. }
  148. public void setWaterBillNo(String waterBillNo) {
  149. this.waterBillNo = waterBillNo;
  150. }
  151. public Float getfAmtdr() {
  152. return fAmtdr;
  153. }
  154. public void setfAmtdr(Float fAmtdr) {
  155. this.fAmtdr = fAmtdr;
  156. }
  157. public Float getfAmtcr() {
  158. return fAmtcr;
  159. }
  160. public void setfAmtcr(Float fAmtcr) {
  161. this.fAmtcr = fAmtcr;
  162. }
  163. public String getfRemarks() {
  164. return fRemarks;
  165. }
  166. public void setfRemarks(String fRemarks) {
  167. this.fRemarks = fRemarks;
  168. }
  169. }