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

com.javajy.api.service.IService Maven / Gradle / Ivy

The newest version!
package com.javajy.api.service;

import com.javajy.api.mapper.BaseMapper;
import java.util.Collection;

public interface IService {
    default boolean save(T var1) {
        System.out.println("saving...");
        return false;
    }

    default boolean saveBatch(Collection var1) {
        return false;
    }

    Integer getCurrentPage();

    Integer getPageSize();

    BaseMapper getBaseMapper();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy