mirror of
				https://github.com/dromara/RuoYi-Vue-Plus.git
				synced 2025-11-04 08:13:44 +08:00 
			
		
		
		
	fix 修复单词拼写错误
This commit is contained in:
		@@ -42,7 +42,7 @@ public class DefaultExcelListener<T> extends AnalysisEventListener<T> implements
 | 
			
		||||
    private ExcelResult<T> excelResult;
 | 
			
		||||
 | 
			
		||||
    public DefaultExcelListener(boolean isValidate) {
 | 
			
		||||
        this.excelResult = new DefautExcelResult<>();
 | 
			
		||||
        this.excelResult = new DefaultExcelResult<>();
 | 
			
		||||
        this.isValidate = isValidate;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -12,7 +12,7 @@ import java.util.List;
 | 
			
		||||
 * @author Yjoioooo
 | 
			
		||||
 * @author Lion Li
 | 
			
		||||
 */
 | 
			
		||||
public class DefautExcelResult<T> implements ExcelResult<T> {
 | 
			
		||||
public class DefaultExcelResult<T> implements ExcelResult<T> {
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 数据对象list
 | 
			
		||||
@@ -26,17 +26,17 @@ public class DefautExcelResult<T> implements ExcelResult<T> {
 | 
			
		||||
    @Setter
 | 
			
		||||
    private List<String> errorList;
 | 
			
		||||
 | 
			
		||||
    public DefautExcelResult() {
 | 
			
		||||
    public DefaultExcelResult() {
 | 
			
		||||
        this.list = new ArrayList<>();
 | 
			
		||||
        this.errorList = new ArrayList<>();
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public DefautExcelResult(List<T> list, List<String> errorList) {
 | 
			
		||||
    public DefaultExcelResult(List<T> list, List<String> errorList) {
 | 
			
		||||
        this.list = list;
 | 
			
		||||
        this.errorList = errorList;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public DefautExcelResult(ExcelResult<T> excelResult) {
 | 
			
		||||
    public DefaultExcelResult(ExcelResult<T> excelResult) {
 | 
			
		||||
        this.list = excelResult.getList();
 | 
			
		||||
        this.errorList = excelResult.getErrorList();
 | 
			
		||||
    }
 | 
			
		||||
		Reference in New Issue
	
	Block a user