OutStock.java 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293
  1. package com.ruoyi.warehouseBusiness.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 OutStock {
  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 fStorekeeper;
  23. /**
  24. * 库存明细 1 未入账 2 未完成所有入账 6 已入账
  25. */
  26. @Excel(name = "出库状态")
  27. private String fItemsStatus;
  28. /**
  29. * 客户名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name
  30. */
  31. @Excel(name = "货权方")
  32. private String fCorpid;
  33. /**
  34. * 提单号
  35. */
  36. @Excel(name = "提单号")
  37. private String fMblno;
  38. /** 明细品名合计 */
  39. @Excel(name = "品名")
  40. private String fProductName;
  41. /**
  42. * 唛头
  43. */
  44. @Excel(name = "品牌")
  45. private String fMarks;
  46. /**
  47. * 入库日期
  48. */
  49. @JsonFormat(pattern = "yyyy-MM-dd")
  50. @Excel(name = "出库日期", width = 30, dateFormat = "yyyy-MM-dd")
  51. private Date fBsdate;
  52. /**
  53. * 仓库
  54. */
  55. @Excel(name = "仓库")
  56. private String fWarehouseid;
  57. /**
  58. * 计划件数,由明细表自动合计生成
  59. */
  60. @Excel(name = "计划件数")
  61. private Long fPlanqty;
  62. /**
  63. * 件数,由明细表自动合计生成
  64. */
  65. @Excel(name = "出库件数")
  66. private Integer fQty;
  67. /**
  68. * 毛重,由明细表自动合计生成
  69. */
  70. @Excel(name = "出库毛重(KG)")
  71. private Float fGrossweight;
  72. /**
  73. * 净重,由明细表自动合计生成
  74. */
  75. @Excel(name = "出库净重(KG)")
  76. private Float fNetweight;
  77. /** 车号 */
  78. @Excel(name = "车号")
  79. private String fTruckno;
  80. /** 司机名 */
  81. @Excel(name = "司机名称")
  82. private String fDriverName;
  83. /** 司机电话 */
  84. @Excel(name = "司机电话")
  85. private String fDriverTel;
  86. /** 司机身份证 */
  87. @Excel(name = "司机身份证")
  88. private String fDriverIdCar;
  89. /** 业务类型(存汉字的,用来区别 如: 来车提货,出库装箱 区别) */
  90. @Excel(name = "业务类别")
  91. private String fBusinessType;
  92. /**
  93. * 状态(数据字典),N 入(出)库中,T入(出)库完成,状态为完成不能删除,状态变化,用邮件、微信通知客户。
  94. */
  95. @Excel(name = "费用状态")
  96. private String fBillstatus;
  97. public String getCreateBy() {
  98. return createBy;
  99. }
  100. public void setCreateBy(String createBy) {
  101. this.createBy = createBy;
  102. }
  103. public String getfStorekeeper() {
  104. return fStorekeeper;
  105. }
  106. public void setfStorekeeper(String fStorekeeper) {
  107. this.fStorekeeper = fStorekeeper;
  108. }
  109. public String getfCorpid() {
  110. return fCorpid;
  111. }
  112. public void setfCorpid(String fCorpid) {
  113. this.fCorpid = fCorpid;
  114. }
  115. public String getfMblno() {
  116. return fMblno;
  117. }
  118. public void setfMblno(String fMblno) {
  119. this.fMblno = fMblno;
  120. }
  121. public String getfProductName() {
  122. return fProductName;
  123. }
  124. public void setfProductName(String fProductName) {
  125. this.fProductName = fProductName;
  126. }
  127. public String getfMarks() {
  128. return fMarks;
  129. }
  130. public void setfMarks(String fMarks) {
  131. this.fMarks = fMarks;
  132. }
  133. public String getfTruckno() {
  134. return fTruckno;
  135. }
  136. public void setfTruckno(String fTruckno) {
  137. this.fTruckno = fTruckno;
  138. }
  139. public String getfDriverName() {
  140. return fDriverName;
  141. }
  142. public void setfDriverName(String fDriverName) {
  143. this.fDriverName = fDriverName;
  144. }
  145. public String getfDriverTel() {
  146. return fDriverTel;
  147. }
  148. public void setfDriverTel(String fDriverTel) {
  149. this.fDriverTel = fDriverTel;
  150. }
  151. public String getfDriverIdCar() {
  152. return fDriverIdCar;
  153. }
  154. public void setfDriverIdCar(String fDriverIdCar) {
  155. this.fDriverIdCar = fDriverIdCar;
  156. }
  157. public String getfBusinessType() {
  158. return fBusinessType;
  159. }
  160. public void setfBusinessType(String fBusinessType) {
  161. this.fBusinessType = fBusinessType;
  162. }
  163. public String getfBillstatus() {
  164. return fBillstatus;
  165. }
  166. public void setfBillstatus(String fBillstatus) {
  167. this.fBillstatus = fBillstatus;
  168. }
  169. public String getfItemsStatus() {
  170. return fItemsStatus;
  171. }
  172. public void setfItemsStatus(String fItemsStatus) {
  173. this.fItemsStatus = fItemsStatus;
  174. }
  175. public Date getfBsdate() {
  176. return fBsdate;
  177. }
  178. public void setfBsdate(Date fBsdate) {
  179. this.fBsdate = fBsdate;
  180. }
  181. public String getfWarehouseid() {
  182. return fWarehouseid;
  183. }
  184. public void setfWarehouseid(String fWarehouseid) {
  185. this.fWarehouseid = fWarehouseid;
  186. }
  187. public Long getfPlanqty() {
  188. return fPlanqty;
  189. }
  190. public void setfPlanqty(Long fPlanqty) {
  191. this.fPlanqty = fPlanqty;
  192. }
  193. public Integer getfQty() {
  194. return fQty;
  195. }
  196. public void setfQty(Integer fQty) {
  197. this.fQty = fQty;
  198. }
  199. public Float getfGrossweight() {
  200. return fGrossweight;
  201. }
  202. public void setfGrossweight(Float fGrossweight) {
  203. this.fGrossweight = fGrossweight;
  204. }
  205. public Float getfNetweight() {
  206. return fNetweight;
  207. }
  208. public void setfNetweight(Float fNetweight) {
  209. this.fNetweight = fNetweight;
  210. }
  211. }