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

com.github.mg0324.excel.vo.ValueExcel Maven / Gradle / Ivy

package com.github.mg0324.excel.vo;

import java.util.List;

/**
 * Created by meigang on 17/9/22.
 * excel值对象
 */
public class ValueExcel {

    private int sheetIndex;

    private List valueCellList;

    public int getSheetIndex() {
        return sheetIndex;
    }

    public void setSheetIndex(int sheetIndex) {
        this.sheetIndex = sheetIndex;
    }

    public List getValueCellList() {
        return valueCellList;
    }

    public void setValueCellList(List valueCellList) {
        this.valueCellList = valueCellList;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy