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

cn.cliveyuan.tools.poi.bean.SheetContent 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.Collection;

/**
 * Created by Clive on 2019/10/28.
 */
@Data
public class SheetContent implements Serializable {
    private String sheetName;
    private String[] headers;
    private Collection data;

    public SheetContent(String sheetName, String[] headers, Collection data) {
        this.sheetName = sheetName;
        this.headers = headers;
        this.data = data;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy