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

io.edurt.datacap.service.service.FunctionService Maven / Gradle / Ivy

There is a newer version: 2024.4.0
Show newest version
package io.edurt.datacap.service.service;

import io.edurt.datacap.common.response.CommonResponse;
import io.edurt.datacap.service.body.FilterBody;
import io.edurt.datacap.service.body.FunctionsImportBody;
import io.edurt.datacap.service.entity.FunctionEntity;
import io.edurt.datacap.service.entity.PageEntity;

public interface FunctionService
        extends BaseService
{
    CommonResponse> getAllByFilter(FilterBody filter);

    CommonResponse getById(Long id);

    CommonResponse batchImport(FunctionsImportBody configure);

    CommonResponse> getAllByPlugin(String plugin);
}