All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.dreamroute.excel.helper.annotation.CellProps Maven / Gradle / Ivy

There is a newer version: 2.0.4-RELEASE
Show newest version
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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy