All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.cliveyuan.tools.poi.bean.SheetData Maven / Gradle / Ivy

There is a newer version: 4.0.6
Show newest version
package cn.cliveyuan.tools.poi.bean;

import lombok.Data;

import java.io.Serializable;
import java.util.List;

/**
 * @author Clive Yuan
 * @date 2020/06/19
 */
@Data
public class SheetData implements Serializable {
    private String sheetName;
    private List dataList;

    public SheetData(String sheetName, List dataList) {
        this.sheetName = sheetName;
        this.dataList = dataList;
    }
}