package com.lunhan.xxx.common.model; import java.util.List; public class ExcelDiscernRow { private int rowIndx; List listCell; public int getRowIndx() { return rowIndx; } public void setRowIndx(int rowIndx) { this.rowIndx = rowIndx; } public List getListCell() { return listCell; } public void setListCell(List listCell) { this.listCell = listCell; } }