| 123456789101112131415161718192021222324 |
- package cn.exlive.exbooter.excel;
- /**
- * <pre>
- *
- * Created by zhenqin.
- * User: zhenqin
- * Date: 2022/10/22
- * Time: 下午10:34
- * Vendor: yiidata.com
- *
- * </pre>
- *
- * @author zhenqin
- */
- @FunctionalInterface
- public interface ProcessCallback {
- /**
- * 数据读取进度
- * @param process
- */
- public void process(int process);
- }
|