Stocktaking.java 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. package com.baoshi.swms.bean;
  2. import com.google.gson.annotations.SerializedName;
  3. import java.io.Serializable;
  4. /**
  5. * 盘点单
  6. *
  7. * @author Zhendong Zhou
  8. * @date 2021/12/15 9:46
  9. */
  10. public class Stocktaking implements Serializable {
  11. private static final long serialVersionUID = 111230L;
  12. private Long id;
  13. @SerializedName("end_at")
  14. private String endAt;//最后操作时间
  15. private String type;//任务类型
  16. private Integer total;//任务数
  17. private Integer processed;//已盘数
  18. public Integer getProcessed() {
  19. return processed;
  20. }
  21. public void setProcessed(Integer processed) {
  22. this.processed = processed;
  23. }
  24. public Integer getTotal() {
  25. return total;
  26. }
  27. public void setTotal(Integer total) {
  28. this.total = total;
  29. }
  30. public String getType() {
  31. return type;
  32. }
  33. public void setType(String type) {
  34. this.type = type;
  35. }
  36. public String getEndAt() {
  37. return endAt;
  38. }
  39. public void setEndAt(String endAt) {
  40. this.endAt = endAt;
  41. }
  42. public Long getId() {
  43. return id;
  44. }
  45. public void setId(Long id) {
  46. this.id = id;
  47. }
  48. }