package com.zy.common.service.erp.entity; import lombok.Data; import java.util.Date; /** * Created by vincent on 2022/12/8 */ @Data public class Goods { private String BarCode; private String MaterialNO; private String ProdSpec; private Integer NumOfBobbins; private Double NWT; private Double GWT; private Date ProdDate; private String LINE; private String GRADE; private String GRADES; private String Chip; private String Batch; private String PACKING_TYPE; private Date PACKING_DATE; private String State; private String LastVoucherID; private String PreVoucherID; private Date LastUpdatedDate; private Integer IsGetData; }