package com.zy.common.service.erp.entity; 
 | 
  
 | 
import lombok.Data; 
 | 
  
 | 
/** 
 | 
 * 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 String ProdDate; 
 | 
  
 | 
    private String LINE; 
 | 
  
 | 
    private String GRADE; 
 | 
  
 | 
    private String GRADES; 
 | 
  
 | 
    private String Chip; 
 | 
  
 | 
    private String Batch; 
 | 
  
 | 
    private String PACKING_TYPE; 
 | 
  
 | 
    private String PACKING_DATE; 
 | 
  
 | 
    private String LastUpdatedDate; 
 | 
  
 | 
    private Integer State; 
 | 
  
 | 
    private String location; 
 | 
  
 | 
} 
 |