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

org.shoulder.batch.spi.ExportDataQueryFactory Maven / Gradle / Ivy

package org.shoulder.batch.spi;

import jakarta.validation.constraints.NotNull;
import org.shoulder.core.dto.request.PageQuery;
import org.springframework.lang.Nullable;

import java.util.List;
import java.util.Map;
import java.util.function.Supplier;

/**
 * 数据导出
 * 用于查询数据
 *
 * @author lym
 */
public interface ExportDataQueryFactory {

    boolean support(@NotNull String businessType, @Nullable PageQuery exportCondition);

    List>>> createQuerySuppliers(@NotNull String businessType, @Nullable PageQuery exportCondition);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy