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

com.zhongweixian.excel.entity.ExcelBaseParams Maven / Gradle / Ivy

The newest version!
package com.zhongweixian.excel.entity;

import com.zhongweixian.excel.handler.inter.IExcelDataHandler;

/**
 * @author [email protected]
 * @Date 2017/11/5:22:16
 */
public class ExcelBaseParams {

    /**
     * 数据处理接口,以此为主,replace,format都在这后面
     */
    private IExcelDataHandler dataHanlder;

    public IExcelDataHandler getDataHanlder() {
        return dataHanlder;
    }

    public void setDataHanlder(IExcelDataHandler dataHanlder) {
        this.dataHanlder = dataHanlder;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy