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

io.github.greennlab.ddul.mybatis.CrudDao Maven / Gradle / Ivy

Go to download

DDul means "ground" in korean prounance. It helps to you when concreate a java projects. And support with database access, cache abstraction, system code generation, hierarchical data handling, article management and etc.

There is a newer version: 0.3.0
Show newest version
package io.github.greennlab.ddul.mybatis;

import java.util.Map;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;

public interface CrudDao {

  Page getPage(Map params, Pageable pageable);

  ENTITY findById(Object entity);

  void insert(ENTITY entity);

  void update(ENTITY entity);

  void delete(ENTITY entity);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy