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

io.vilya.common.service.BaseService Maven / Gradle / Ivy

The newest version!
package io.vilya.common.service;

import java.util.List;

import io.vilya.common.bean.req.QueryBean;

public interface BaseService {
	
    T get(Integer id);

    List list(QueryBean page, T record);

    void delete(Integer id);

    void save(T record);

    void update(T record);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy