ComProductVo.java 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. package com.bsentity.vo;
  2. import com.fasterxml.jackson.annotation.JsonProperty;
  3. import lombok.Data;
  4. import java.io.Serializable;
  5. import java.math.BigDecimal;
  6. /**
  7. * 投诉产品vo
  8. *
  9. * @author Trj
  10. */
  11. @Data
  12. public class ComProductVo implements Serializable {
  13. @JsonProperty("final")
  14. private static final Long serialVersionUID = 1L;
  15. /**
  16. * 合金
  17. */
  18. @JsonProperty("ALLOY")
  19. private String alloy;
  20. /**
  21. * 投诉重量
  22. */
  23. @JsonProperty("COMWEIGHT")
  24. private BigDecimal comWeight;
  25. /**
  26. * 客诉单ID
  27. */
  28. @JsonProperty("CUSTOMERID")
  29. private String customerId;
  30. /**
  31. * 缺陷
  32. */
  33. @JsonProperty("DEFECT")
  34. private String DEFECT;
  35. /**
  36. * 是否删除
  37. */
  38. @JsonProperty("DELETED")
  39. private String DELETED;
  40. /**
  41. * 交货编号
  42. */
  43. @JsonProperty("DELIVERYNO")
  44. private String DELIVERYNO;
  45. /**
  46. * 投诉产品ID
  47. */
  48. @JsonProperty("ID")
  49. private String ID;
  50. /**
  51. * 状态
  52. */
  53. @JsonProperty("ISSTATUS")
  54. private String ISSTATUS;
  55. /**
  56. * 规格(长)
  57. */
  58. @JsonProperty("LONGS")
  59. private BigDecimal LONGS;
  60. /**
  61. * 原订单号
  62. */
  63. @JsonProperty("ORIORDERNO")
  64. private String ORIORDERNO;
  65. /**
  66. * 编号
  67. */
  68. @JsonProperty("PRODUCTNO")
  69. private String PRODUCTNO;
  70. /**
  71. * 规格(厚)
  72. */
  73. @JsonProperty("THICK")
  74. private BigDecimal THICK;
  75. /**
  76. * 卷号
  77. */
  78. @JsonProperty("VOLUMENO")
  79. private String VOLUMENO;
  80. /**
  81. * 规格(宽)
  82. */
  83. @JsonProperty("WIDE")
  84. private BigDecimal WIDE;
  85. /**
  86. * 序号
  87. */
  88. @JsonProperty("SERIALNO")
  89. private Integer SERIALNO;
  90. }