TWarehousebillsitemsNew.java 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  1. package com.ruoyi.warehouseBusiness.domain;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import com.ruoyi.common.annotation.Excel;
  4. import com.ruoyi.common.core.domain.BaseEntity;
  5. import java.math.BigDecimal;
  6. import java.util.Date;
  7. /**
  8. * 创建仓库 从->主查询对象
  9. */
  10. public class TWarehousebillsitemsNew extends BaseEntity {
  11. /**
  12. * $column.columnComment
  13. */
  14. private Long fId;
  15. /**
  16. * 单据类型(数据字典)SJRK(入库) SJCK(实际出库) CKDB(调拨) HQZY(货权转移)
  17. */
  18. //@Excel(name = "单据类型(数据字典)SJRK", readConverterExp = "入=库")
  19. private String fBilltype;
  20. /**
  21. * 1: 出库,2:在库
  22. */
  23. private String type;
  24. /** 是否计算仓储费(应对出库单是否计算过仓储费) */
  25. //@Excel(name = "是否计算仓储费(应对出库单是否计算过仓储费)")
  26. private String isCalculateStorageFees;
  27. /**
  28. * 客户名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name
  29. */
  30. private Long fCorpid;
  31. /**
  32. * 具体客户名称
  33. */
  34. @Excel(name = "客户名称")
  35. private String fCName;
  36. /**
  37. * 名称
  38. */
  39. @Excel(name = "品名")
  40. private String fName;
  41. /**
  42. * 提单号
  43. */
  44. @Excel(name = "提单号")
  45. private String fMblno;
  46. /**
  47. * 件数
  48. */
  49. @Excel(name = "件数")
  50. private Long fQty;
  51. /**
  52. * 毛重
  53. */
  54. @Excel(name = "毛重")
  55. private BigDecimal fGrossweight;
  56. /**
  57. * 仓库
  58. */
  59. //@Excel(name = "仓库")
  60. private Long fWarehouseid;
  61. /** 仓库/库区/库位 */
  62. @Excel(name = "仓库/库区/库位")
  63. private String fWarehouseInformation;
  64. /**
  65. * 入库日期
  66. */
  67. @JsonFormat(pattern = "yyyy-MM-dd")
  68. @Excel(name = "入库日期", width = 30, dateFormat = "yyyy-MM-dd")
  69. private Date fOriginalbilldate;
  70. /**
  71. * 入(出)库日期
  72. */
  73. //@Excel(name = "入", readConverterExp = "出=")
  74. private Date fBsdate;
  75. /**
  76. * 仓管人
  77. */
  78. @Excel(name = "仓管人")
  79. private String fStorekeeper;
  80. /** 仓储费截至日期 */
  81. @JsonFormat(pattern = "yyyy-MM-dd")
  82. @Excel(name = "仓储费截至日期", width = 30, dateFormat = "yyyy-MM-dd")
  83. private Date fStorageFeeDeadline;
  84. public Long getfId() {
  85. return fId;
  86. }
  87. public void setfId(Long fId) {
  88. this.fId = fId;
  89. }
  90. public String getfBilltype() {
  91. return fBilltype;
  92. }
  93. public void setfBilltype(String fBilltype) {
  94. this.fBilltype = fBilltype;
  95. }
  96. public String getType() {
  97. return type;
  98. }
  99. public void setType(String type) {
  100. this.type = type;
  101. }
  102. public String getIsCalculateStorageFees() {
  103. return isCalculateStorageFees;
  104. }
  105. public void setIsCalculateStorageFees(String isCalculateStorageFees) {
  106. this.isCalculateStorageFees = isCalculateStorageFees;
  107. }
  108. public Long getfCorpid() {
  109. return fCorpid;
  110. }
  111. public void setfCorpid(Long fCorpid) {
  112. this.fCorpid = fCorpid;
  113. }
  114. public String getfCName() {
  115. return fCName;
  116. }
  117. public void setfCName(String fCName) {
  118. this.fCName = fCName;
  119. }
  120. public String getfName() {
  121. return fName;
  122. }
  123. public void setfName(String fName) {
  124. this.fName = fName;
  125. }
  126. public String getfMblno() {
  127. return fMblno;
  128. }
  129. public void setfMblno(String fMblno) {
  130. this.fMblno = fMblno;
  131. }
  132. public Long getfQty() {
  133. return fQty;
  134. }
  135. public void setfQty(Long fQty) {
  136. this.fQty = fQty;
  137. }
  138. public BigDecimal getfGrossweight() {
  139. return fGrossweight;
  140. }
  141. public void setfGrossweight(BigDecimal fGrossweight) {
  142. this.fGrossweight = fGrossweight;
  143. }
  144. public Long getfWarehouseid() {
  145. return fWarehouseid;
  146. }
  147. public void setfWarehouseid(Long fWarehouseid) {
  148. this.fWarehouseid = fWarehouseid;
  149. }
  150. public String getfWarehouseInformation() {
  151. return fWarehouseInformation;
  152. }
  153. public void setfWarehouseInformation(String fWarehouseInformation) {
  154. this.fWarehouseInformation = fWarehouseInformation;
  155. }
  156. public Date getfOriginalbilldate() {
  157. return fOriginalbilldate;
  158. }
  159. public void setfOriginalbilldate(Date fOriginalbilldate) {
  160. this.fOriginalbilldate = fOriginalbilldate;
  161. }
  162. public Date getfBsdate() {
  163. return fBsdate;
  164. }
  165. public void setfBsdate(Date fBsdate) {
  166. this.fBsdate = fBsdate;
  167. }
  168. public String getfStorekeeper() {
  169. return fStorekeeper;
  170. }
  171. public void setfStorekeeper(String fStorekeeper) {
  172. this.fStorekeeper = fStorekeeper;
  173. }
  174. public Date getfStorageFeeDeadline() {
  175. return fStorageFeeDeadline;
  176. }
  177. public void setfStorageFeeDeadline(Date fStorageFeeDeadline) {
  178. this.fStorageFeeDeadline = fStorageFeeDeadline;
  179. }
  180. @Override
  181. public String toString() {
  182. return "TWarehousebillsitemsNew{" +
  183. "fId=" + fId +
  184. ", fBilltype='" + fBilltype + '\'' +
  185. ", type='" + type + '\'' +
  186. ", isCalculateStorageFees='" + isCalculateStorageFees + '\'' +
  187. ", fCorpid=" + fCorpid +
  188. ", fName='" + fName + '\'' +
  189. ", fMblno='" + fMblno + '\'' +
  190. ", fQty=" + fQty +
  191. ", fGrossweight=" + fGrossweight +
  192. ", fWarehouseid=" + fWarehouseid +
  193. ", fWarehouseInformation='" + fWarehouseInformation + '\'' +
  194. ", fOriginalbilldate=" + fOriginalbilldate +
  195. ", fBsdate=" + fBsdate +
  196. ", fStorekeeper='" + fStorekeeper + '\'' +
  197. ", fStorageFeeDeadline=" + fStorageFeeDeadline +
  198. '}';
  199. }
  200. }