com.orion.office.excel.option.HeaderOption 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 17:27
*/
public class HeaderOption implements Serializable {
/**
* 页眉左侧
*/
private String left;
/**
* 页眉中间
*/
private String center;
/**
* 页眉右侧
*/
private String right;
public HeaderOption() {
}
public HeaderOption(String left, String center, String right) {
this.left = left;
this.center = center;
this.right = right;
}
public String getLeft() {
return left;
}
public void setLeft(String left) {
this.left = left;
}
public String getCenter() {
return center;
}
public void setCenter(String center) {
this.center = center;
}
public String getRight() {
return right;
}
public void setRight(String right) {
this.right = right;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy