forked from fanruan/easyexcel
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.
29 lines
453 B
29 lines
453 B
4 years ago
|
package com.alibaba.excel.metadata.data;
|
||
4 years ago
|
|
||
|
import lombok.Data;
|
||
|
|
||
|
/**
|
||
4 years ago
|
* comment
|
||
4 years ago
|
*
|
||
|
* @author Jiaju Zhuang
|
||
|
*/
|
||
|
@Data
|
||
|
public class CommentData {
|
||
|
/**
|
||
|
* Row index
|
||
|
*/
|
||
|
private Integer rowIndex;
|
||
|
/**
|
||
|
* Column index
|
||
|
*/
|
||
|
private Integer columnIndex;
|
||
|
/**
|
||
|
* Name of the original comment author
|
||
|
*/
|
||
|
private String author;
|
||
|
/**
|
||
|
* rich text string
|
||
|
*/
|
||
|
private RichTextStringData richTextStringData;
|
||
|
}
|