com.huoguo.batch.service.BatchFillService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simple-batch Show documentation
Show all versions of simple-batch Show documentation
This is simple based batch write operation tool
The newest version!
package com.huoguo.batch.service;
import java.util.Map;
/**
* 填充字段接口
* 需配置实现类,并注入Spring容器
*
* @author Lizhenghuang
*/
public interface BatchFillService {
/**
* 获取SQL新增时填充字段与值
*
* @return Map
*/
Map batchInsertFill();
/**
* 获取SQL修改时填充字段与值
*
* @return Map
*/
Map batchUpdateFill();
}