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.
|
package com.wb.excel.api.datatable;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.HashMap;
|
|
|
|
/**
|
|
* DataTable中的行对象.
|
|
* Created on 2014/09/19.
|
|
*
|
|
* @author
|
|
* @since 0.1.0
|
|
*/
|
|
public class DataRow extends HashMap<String, Cell> implements Serializable {
|
|
}
|