Pre Merge pull request !222 from aquaqu/master

pull/222/MERGE
aquaqu 3 years ago committed by Gitee
commit f5f6ca729a
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

@ -0,0 +1,33 @@
package com.ruoyi.common.core.utils.poi;
import java.util.List;
/**
* Excel
* errorList:
* result:
* @author
*/
public class ExcelImportResult<T> {
private List<String> errorList;
public List<String> getErrorList() {
return errorList;
}
public void setErrorList(List<String> errorList) {
this.errorList = errorList;
}
public List<T> getResult() {
return result;
}
public void setResult(List<T> result) {
this.result = result;
}
private List<T> result;
}
Loading…
Cancel
Save