ExcelTitleCell.java 595 Bytes
package com.bckefu.excel.graph.entity;

/**
 * @author caoliang1918@aliyun.com
 * @Date 2017/11/5:23:29
 */
public class ExcelTitleCell {
    private Integer row;
    private Integer col;

    public ExcelTitleCell(){

    }

    public ExcelTitleCell(Integer row,Integer col){
        this.row=row;
        this.col=col;
    }

    public Integer getRow()
    {
        return row;
    }
    public void setRow(Integer row)
    {
        this.row = row;
    }
    public Integer getCol()
    {
        return col;
    }
    public void setCol(Integer col)
    {
        this.col = col;
    }
}