package com.yanzuoguang.cloud.excel;

import com.yanzuoguang.db.impl.DbRow;

/**
 * Excel导出接口
 *
 * @author 颜佐光
 */
public interface ExcelDaoFinish<T, M extends Object> extends ExcelDao<T, M> {

    /**
     * 循环处理每行数据
     *
     * @param excel excel对象
     */
    void finish(DbRow<M> excel);
}