Interface SelectMapper<T>

Type Parameters:
T - 不能为空
All Known Subinterfaces:
BaseMapper<T>, BaseSelectMapper<T>, Mapper<T>

public interface SelectMapper<T>
通用Mapper接口,查询
Author:
liuzh
  • Method Summary

    Modifier and Type
    Method
    Description
    select(T record)
    根据实体中的属性值进行查询,查询条件使用等号
  • Method Details

    • select

      @SelectProvider(type=BaseSelectProvider.class, method="dynamicSQL") List<T> select(T record)
      根据实体中的属性值进行查询,查询条件使用等号
      Parameters:
      record -
      Returns: