org.shoulder.batch.model.DataItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of shoulder-batch Show documentation
Show all versions of shoulder-batch Show documentation
Shoulder 扩展-批处理模块,提供批量数据导入、导出、异步校验、导入历史记录管理等能力。
package org.shoulder.batch.model;
/**
* 批量记录某一项(多行中某一行)
*
* @author lym
*/
public interface DataItem {
/**
* 获取本项在整体批量操作中的行号
*
* @return 行号
*/
int getIndex();
}