com.gitee.cliveyuan.tools.data.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.data;
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;
}
}