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

cn.topicstudy.jexcel.entity.MyExcel Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package cn.topicstudy.jexcel.entity;

import cn.topicstudy.jexcel.enums.ExcelTypeEnum;

import java.util.ArrayList;
import java.util.List;

/**
 * @Author: 专题学习大师 topicstudy.cn 2021/10/10
 */
public class MyExcel {
    private String name;
    private ExcelTypeEnum excelType;
    private List mySheets = new ArrayList();// excel中的sheet

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public ExcelTypeEnum getExcelType() {
        return excelType;
    }

    public void setExcelType(ExcelTypeEnum excelType) {
        this.excelType = excelType;
    }

    public List getMySheets() {
        return mySheets;
    }

    public void setMySheets(List mySheets) {
        this.mySheets = mySheets;
    }

    @Override
    public String toString() {
        return "MyExcel{" +
                "name='" + name + '\'' +
                ", mySheets=" + mySheets +
                '}';
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy