All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.schoolwow.quickdao.module.database.dml.domain.GetBatchParametersSupplier Maven / Gradle / Ivy

There is a newer version: 5.3.1
Show newest version
package cn.schoolwow.quickdao.module.database.dml.domain;

import java.util.List;

public interface GetBatchParametersSupplier {
    /**
     * 返回批处理参数列表
     * */
    List getBatchParameters(Integer index) throws Exception;
}