
com.github.dreamroute.excel.helper.annotation.BaseProps Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of excel-helper Show documentation
Show all versions of excel-helper Show documentation
excel export base on apache poi 3.17
The newest version!
package com.github.dreamroute.excel.helper.annotation;
import org.apache.poi.ss.usermodel.HorizontalAlignment;
import org.apache.poi.ss.usermodel.VerticalAlignment;
/**
*
* @author [email protected]
*
*/
public class BaseProps {
private HorizontalAlignment horizontal;
private VerticalAlignment vertical;
public HorizontalAlignment getHorizontal() {
return horizontal;
}
public void setHorizontal(HorizontalAlignment horizontal) {
this.horizontal = horizontal;
}
public VerticalAlignment getVertical() {
return vertical;
}
public void setVertical(VerticalAlignment vertical) {
this.vertical = vertical;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy