package com.panzhihua.common.utlis; import lombok.Data; /** * description ExcelSelectObject Excel 下拉类别传递对象 * * @author manailin * @date 2019/7/10 10:03 */ @Data public class ExcelSelectObject { /** * firstCol 区域中第一个单元格的列号 (下标0开始) */ private int firstCol; /** * lastCol 区域中最后一个单元格的列号 */ private int lastCol; /** * strings 下拉内容 */ private String[] strings; public ExcelSelectObject(final int firstCol, final int lastCol, final String[] strings) { this.firstCol = firstCol; this.lastCol = lastCol; this.strings = strings; } }