package com.shlanbao.tzsc.pms.qm.self.beans; import java.util.ArrayList; import java.util.List; public class QmWardMainInfo { private String materialCode; private String inspectionType; private String orderNumber; List batchInfo=new ArrayList<>(); public List getBatchInfo() { return batchInfo; } public void setBatchInfo(List batchInfo) { this.batchInfo = batchInfo; } public String getMaterialCode() { return materialCode; } public void setMaterialCode(String materialCode) { this.materialCode = materialCode; } public String getInspectionType() { return inspectionType; } public void setInspectionType(String inspectionType) { this.inspectionType = inspectionType; } public String getOrderNumber() { return orderNumber; } public void setOrderNumber(String orderNumber) { this.orderNumber = orderNumber; } }