123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- package com.bsentity.vo;
- import com.fasterxml.jackson.annotation.JsonProperty;
- import lombok.Data;
- import java.io.Serializable;
- import java.math.BigDecimal;
- /**
- * 投诉产品vo
- *
- * @author Trj
- */
- @Data
- public class ComProductVo implements Serializable {
- @JsonProperty("final")
- private static final Long serialVersionUID = 1L;
- /**
- * 合金
- */
- @JsonProperty("ALLOY")
- private String alloy;
- /**
- * 投诉重量
- */
- @JsonProperty("COMWEIGHT")
- private BigDecimal comWeight;
- /**
- * 客诉单ID
- */
- @JsonProperty("CUSTOMERID")
- private String customerId;
- /**
- * 缺陷
- */
- @JsonProperty("DEFECT")
- private String DEFECT;
- /**
- * 是否删除
- */
- @JsonProperty("DELETED")
- private String DELETED;
- /**
- * 交货编号
- */
- @JsonProperty("DELIVERYNO")
- private String DELIVERYNO;
- /**
- * 投诉产品ID
- */
- @JsonProperty("ID")
- private String ID;
- /**
- * 状态
- */
- @JsonProperty("ISSTATUS")
- private String ISSTATUS;
- /**
- * 规格(长)
- */
- @JsonProperty("LONGS")
- private BigDecimal LONGS;
- /**
- * 原订单号
- */
- @JsonProperty("ORIORDERNO")
- private String ORIORDERNO;
- /**
- * 编号
- */
- @JsonProperty("PRODUCTNO")
- private String PRODUCTNO;
- /**
- * 规格(厚)
- */
- @JsonProperty("THICK")
- private BigDecimal THICK;
- /**
- * 卷号
- */
- @JsonProperty("VOLUMENO")
- private String VOLUMENO;
- /**
- * 规格(宽)
- */
- @JsonProperty("WIDE")
- private BigDecimal WIDE;
- /**
- * 序号
- */
- @JsonProperty("SERIALNO")
- private Integer SERIALNO;
- }
|