com.orion.office.excel.option.CommentOption Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of orion-office Show documentation
Show all versions of orion-office Show documentation
orion office (excel csv and more...)
package com.orion.office.excel.option;
import java.io.Serializable;
/**
* excel 批注参数
*
* @author Jiahang Li
* @version 1.0.0
* @since 2020/12/25 15:59
*/
public class CommentOption implements Serializable {
/**
* 作者
*/
private String author;
/**
* 批注
*/
private String comment;
/**
* 是否可见
*/
private boolean visible;
public CommentOption() {
}
public CommentOption(String comment) {
this.comment = comment;
}
public String getAuthor() {
return author;
}
public void setAuthor(String author) {
this.author = author;
}
public String getComment() {
return comment;
}
public void setComment(String comment) {
this.comment = comment;
}
public boolean isVisible() {
return visible;
}
public void setVisible(boolean visible) {
this.visible = visible;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy