ExcelReadHeadProperty.java 433 字节
Newer Older
Z
zhuangjiaju 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
package com.alibaba.excel.read.metadata.property;

import java.util.List;

import com.alibaba.excel.metadata.property.ExcelHeadProperty;

/**
 * Define the header attribute of excel
 *
 * @author jipengfei
 */
public class ExcelReadHeadProperty extends ExcelHeadProperty {

    public ExcelReadHeadProperty(Class headClazz, List<List<String>> head, Boolean convertAllFiled) {
        super(headClazz, head, convertAllFiled);
    }
}