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