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

io.vilya.common.mapper.BaseMapper Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
package io.vilya.common.mapper;

import java.util.List;

import io.vilya.common.bean.EntityBean;

public interface BaseMapper {
    T get(Integer id);

    List list(T record);

    int delete(Integer id);

    int save(T record);

    int update(T record);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy