All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.zhongweixian.excel.graph.entity.ExcelTitleCell Maven / Gradle / Ivy

The newest version!
package com.zhongweixian.excel.graph.entity;

/**
 * @author [email protected]
 * @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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy