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

cn.afterturn.easypoi.handler.inter.IExcelExportServer Maven / Gradle / Ivy

There is a newer version: 4.5.0
Show newest version
package cn.afterturn.easypoi.handler.inter;

import java.util.List;

/**
 * 导出数据接口
 *
 * @author JueYue
 * 2016年9月8日
 */
public interface IExcelExportServer {
    /**
     * 查询数据接口
     *
     * @param queryParams 查询条件
     * @param page        当前页数从1开始
     * @return
     */
    public List selectListForExcelExport(Object queryParams, int page);

}