
com.github.dreamroute.mybatis.pro.sdk.SelectMapper Maven / Gradle / Ivy
package com.github.dreamroute.mybatis.pro.sdk;
import java.util.List;
/**
* @author w.dehai
*/
public interface SelectMapper {
/**
* 根据id查询单个
*/
T selectById(ID id);
/**
* 根据多个id查询多个
*/
List selectByIds(List ids);
/**
* 全表查询
*/
List selectAll();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy