package com.huaheng.api.mes.domain; import lombok.Data; import java.io.Serializable; import java.math.BigDecimal; /** * @author 游杰 */ @Data public class MaterialDataByQCDto implements Serializable { private static final long serialVersionUID = 1L; /** * x坐标 */ private Integer locationNoX = -1; /** * y坐标 */ private Integer locationNoY = -1; /** * 是否原材料 true:是 false:否 */ private Boolean isMaterial; /** * 物料编码 */ private String materialCode; /** * 追溯码 */ private String tracingNo; /** * 数量 */ private BigDecimal qty; /** * 供应商编码 */ private String supplierCode; /** * 供应商SN码 */ private String supplierTracingNo; /** * 质量状态 true代表合格品,false代表不合格品 */ private Boolean qualityStatus; /** * 库位编码 */ private String locationCode; /** * 载具编码 */ private String containerCode; /** * 载具类型编码 */ private String containerTypeCode; /** * 盛具类型 */ private String vehicleCode; /** * 盛具类型编码 */ private String vehicleTypeCode; }