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

com.github.bingoohuang.excel2beans.CellData Maven / Gradle / Ivy

There is a newer version: 0.0.34
Show newest version
package com.github.bingoohuang.excel2beans;

import lombok.Builder;
import lombok.Data;

@Data @Builder
public class CellData {
    private String value; // 单元格取值
    private String comment; // 单元格批注
    private String commentAuthor; // 单元格批注作者
    private int row; // row index
    private int col; // col index
    private int sheetIndex; // sheet index
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy