TWareHouseExcelItems.java 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. package com.ruoyi.warehouseBusiness.domain;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import com.ruoyi.common.annotation.Excel;
  4. import org.apache.commons.lang3.builder.ToStringBuilder;
  5. import org.apache.commons.lang3.builder.ToStringStyle;
  6. import java.math.BigDecimal;
  7. import java.util.Date;
  8. import java.util.List;
  9. public class TWareHouseExcelItems {
  10. /** 提单号 */
  11. @Excel(name = "序号")
  12. private String fId;
  13. /** 类型 */
  14. @Excel(name = "业务来源")
  15. private String fBilltype;
  16. /** 提单号 */
  17. @Excel(name = "业务单号")
  18. private String fMblno;
  19. /** 货名 */
  20. @Excel(name = "货物货名")
  21. private String fGoodsid;
  22. /** 仓库名称 */
  23. @Excel(name = "仓库名称")
  24. private String warehouseName;
  25. /** 品牌 */
  26. @Excel(name = "唛头")
  27. private String fMarks;
  28. /** 业务日期 */
  29. @JsonFormat(pattern = "yyyy-MM-dd")
  30. @Excel(name = "业务日期", width = 30, dateFormat = "yyyy-MM-dd")
  31. private Date fBsdate;
  32. /** 提单号 */
  33. @Excel(name = "计费单位")
  34. private String fFeeUnitid;
  35. /** 重量 */
  36. @Excel(name = "计费数量")
  37. private BigDecimal fBillingQty;
  38. /** 计费起始日期 */
  39. @JsonFormat(pattern = "yyyy-MM-dd")
  40. @Excel(name = "计费起始日期", width = 30, dateFormat = "yyyy-MM-dd")
  41. private Date fChargedate;
  42. /** 计费起始日期 */
  43. @JsonFormat(pattern = "yyyy-MM-dd")
  44. @Excel(name = "计费截止日期", width = 30, dateFormat = "yyyy-MM-dd")
  45. private Date fBillingDeadline;
  46. /** 计费天数 */
  47. @Excel(name = "计费天数")
  48. private Long fBillingDays;
  49. /** 堆存天数 */
  50. @Excel(name = "库存天数")
  51. private Long fInventoryDays;
  52. /** 货物堆存费 */
  53. @Excel(name = "计费金额")
  54. private BigDecimal fAmt;
  55. /** 备注 */
  56. @Excel(name = "备注")
  57. private String remark;
  58. /** 计费日期 */
  59. @Excel(name = "计费详情")
  60. private String priceDateRemarks;
  61. public String getPriceDateRemarks() {
  62. return priceDateRemarks;
  63. }
  64. public void setPriceDateRemarks(String priceDateRemarks) {
  65. this.priceDateRemarks = priceDateRemarks;
  66. }
  67. public String getfId() {
  68. return fId;
  69. }
  70. public void setfId(String fId) {
  71. this.fId = fId;
  72. }
  73. public String getfBilltype() {
  74. return fBilltype;
  75. }
  76. public void setfBilltype(String fBilltype) {
  77. this.fBilltype = fBilltype;
  78. }
  79. public String getfMblno() {
  80. return fMblno;
  81. }
  82. public void setfMblno(String fMblno) {
  83. this.fMblno = fMblno;
  84. }
  85. public String getfGoodsid() {
  86. return fGoodsid;
  87. }
  88. public void setfGoodsid(String fGoodsid) {
  89. this.fGoodsid = fGoodsid;
  90. }
  91. public String getfMarks() {
  92. return fMarks;
  93. }
  94. public void setfMarks(String fMarks) {
  95. this.fMarks = fMarks;
  96. }
  97. public Date getfBsdate() {
  98. return fBsdate;
  99. }
  100. public void setfBsdate(Date fBsdate) {
  101. this.fBsdate = fBsdate;
  102. }
  103. public String getfFeeUnitid() {
  104. return fFeeUnitid;
  105. }
  106. public void setfFeeUnitid(String fFeeUnitid) {
  107. this.fFeeUnitid = fFeeUnitid;
  108. }
  109. public Date getfChargedate() {
  110. return fChargedate;
  111. }
  112. public void setfChargedate(Date fChargedate) {
  113. this.fChargedate = fChargedate;
  114. }
  115. public Date getfBillingDeadline() {
  116. return fBillingDeadline;
  117. }
  118. public void setfBillingDeadline(Date fBillingDeadline) {
  119. this.fBillingDeadline = fBillingDeadline;
  120. }
  121. public BigDecimal getfBillingQty() {
  122. return fBillingQty;
  123. }
  124. public void setfBillingQty(BigDecimal fBillingQty) {
  125. this.fBillingQty = fBillingQty;
  126. }
  127. public Long getfBillingDays() {
  128. return fBillingDays;
  129. }
  130. public void setfBillingDays(Long fBillingDays) {
  131. this.fBillingDays = fBillingDays;
  132. }
  133. public Long getfInventoryDays() {
  134. return fInventoryDays;
  135. }
  136. public void setfInventoryDays(Long fInventoryDays) {
  137. this.fInventoryDays = fInventoryDays;
  138. }
  139. public BigDecimal getfAmt() {
  140. return fAmt;
  141. }
  142. public void setfAmt(BigDecimal fAmt) {
  143. this.fAmt = fAmt;
  144. }
  145. public String getRemark() {
  146. return remark;
  147. }
  148. public void setRemark(String remark) {
  149. this.remark = remark;
  150. }
  151. }