You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.0 KiB
55 lines
1.0 KiB
package sut.edu.zyp.dormitory.manage.dto;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* Excel导入数据
|
|
*
|
|
* @author zyp
|
|
* @version 0.0.1
|
|
* @since 0.0.1
|
|
*/
|
|
public class ExcelImportResponse extends AbstractBaseResponse<ExcelImportResponse> implements Serializable {
|
|
|
|
/**
|
|
* 导入的表
|
|
*/
|
|
private String table;
|
|
|
|
/**
|
|
* 导入成功行数
|
|
*/
|
|
private int successRows;
|
|
|
|
/**
|
|
* 导入成功的数据
|
|
*/
|
|
private List<Map<String,String>> saveData;
|
|
|
|
public String getTable() {
|
|
return table;
|
|
}
|
|
|
|
public void setTable(String table) {
|
|
this.table = table;
|
|
}
|
|
|
|
public int getSuccessRows() {
|
|
return successRows;
|
|
}
|
|
|
|
public void setSuccessRows(int successRows) {
|
|
this.successRows = successRows;
|
|
}
|
|
|
|
public List<Map<String, String>> getSaveData() {
|
|
return saveData;
|
|
}
|
|
|
|
public void setSaveData(List<Map<String, String>> saveData) {
|
|
this.saveData = saveData;
|
|
}
|
|
}
|