Commit dcf09242 authored by yanzg's avatar yanzg

下载视频

parent b7ade44a
......@@ -7,7 +7,7 @@ import com.yanzuoguang.db.impl.DbRow;
*
* @author 颜佐光
*/
public interface ExcelDaoFinish<T extends Object, M extends Object> extends ExcelDao<T, M> {
public interface ExcelDaoFinish<T extends Object, M extends Object> extends ExcelDaoStatus<T, M> {
/**
* 循环处理每行数据
......
package com.yanzuoguang.cloud.excel;
import com.yanzuoguang.db.impl.DbRow;
import com.yanzuoguang.excel.ExcelStatus;
/**
* Excel导出接口
*
* @author 颜佐光
*/
public interface ExcelDaoStatus<T extends Object, M extends Object> extends ExcelStatus<T> {
/**
* 循环处理每行数据
*
* @param excel excel对象
* @param cond 条件参数
*/
void export(DbRow<M> excel, T cond);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment