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

com.gitee.cliveyuan.tools.bean.excel.SheetInfo Maven / Gradle / Ivy

There is a newer version: 4.0.6
Show newest version
package com.gitee.cliveyuan.tools.bean.excel;

import lombok.Data;

import java.io.Serializable;

/**
 * @author Clive Yuan
 * @date 2020/06/19
 */
@Data
public class SheetInfo implements Serializable {
    private String sheetName;
    private Class clazz;

    public SheetInfo(String sheetName, Class clazz) {
        this.sheetName = sheetName;
        this.clazz = clazz;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy