You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
439 B

package com.alibaba.excel.metadata;
import lombok.Data;
/**
* @author jipengfei
*/
@Data
public class CellRange {
private int firstRow;
private int lastRow;
private int firstCol;
private int lastCol;
public CellRange(int firstRow, int lastRow, int firstCol, int lastCol) {
this.firstRow = firstRow;
this.lastRow = lastRow;
this.firstCol = firstCol;
this.lastCol = lastCol;
}
}