![JAR search and dependency download from the Maven repository](/logo.png)
com.gitee.cliveyuan.tools.bean.excel.SheetContent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-tools Show documentation
Show all versions of java-tools Show documentation
Some commonly used methods in java
package com.gitee.cliveyuan.tools.bean.excel;
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 - 2025 Weber Informatics LLC | Privacy Policy