com.github.dreamroute.excel.helper.annotation.CellProps 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
package com.github.dreamroute.excel.helper.annotation;
/**
*
* @author [email protected]
*
*/
public class CellProps extends BaseProps {
private String originalDateFormate;
private String targetDateFormate;
/**
* @return the originalDateFormate
*/
public String getOriginalDateFormate() {
return originalDateFormate;
}
/**
* @param originalDateFormate the originalDateFormate to set
*/
public void setOriginalDateFormate(String originalDateFormate) {
this.originalDateFormate = originalDateFormate;
}
/**
* @return the targetDateFormate
*/
public String getTargetDateFormate() {
return targetDateFormate;
}
/**
* @param targetDateFormate the targetDateFormate to set
*/
public void setTargetDateFormate(String targetDateFormate) {
this.targetDateFormate = targetDateFormate;
}
}