package com.chuanghai.attendance.utils.excel; import java.util.List; public class ImportResult { private Integer successNum; private String successInfo; private Integer errorNum; private String errorInfo; private Integer otherNum; private String otherInfo; private String updateInfo; private List updateList; private List successList; private List errorList; private List otherList; public Integer getSuccessNum() { return successNum; } public void setSuccessNum(Integer successNum) { this.successNum = successNum; } public String getSuccessInfo() { return successInfo; } public void setSuccessInfo(String successInfo) { this.successInfo = successInfo; } public Integer getErrorNum() { return errorNum; } public void setErrorNum(Integer errorNum) { this.errorNum = errorNum; } public String getErrorInfo() { return errorInfo; } public void setErrorInfo(String errorInfo) { this.errorInfo = errorInfo; } public Integer getOtherNum() { return otherNum; } public void setOtherNum(Integer otherNum) { this.otherNum = otherNum; } public String getOtherInfo() { return otherInfo; } public void setOtherInfo(String otherInfo) { this.otherInfo = otherInfo; } public List getSuccessList() { return successList; } public void setSuccessList(List successList) { this.successList = successList; } public List getErrorList() { return errorList; } public void setErrorList(List errorList) { this.errorList = errorList; } public List getOtherList() { return otherList; } public void setOtherList(List otherList) { this.otherList = otherList; } public String getUpdateInfo() { return updateInfo; } public void setUpdateInfo(String updateInfo) { this.updateInfo = updateInfo; } public List getUpdateList() { return updateList; } public void setUpdateList(List updateList) { this.updateList = updateList; } }