-
-
-
参数类型为ColumnSelector的tech.codingless.core.plugs.mybaties3中的方法
| 修饰符和类型 |
方法 |
说明 |
List<T> |
GenericQueryDao.findByExample(Class<T> clazz,
ColumnSelector<T> columns,
T example,
String orderColumn,
OrderTypeEnum orderType,
Integer size,
Integer offset) |
|
List<T> |
GenericQueryDAOImpl.findByExample(Class<T> clazz,
ColumnSelector<T> columns,
T example,
String orderColumn,
OrderTypeEnum orderType,
Integer limit,
Integer offset) |
|
PageRollResult<T> |
DBBaseGenericService.rollPage(ColumnSelector<T> columns,
QueryConditionWrapper<T> wrapper,
SerializableFunction<T,Object> sortColumn,
OrderTypeEnum orderType,
Integer size,
Integer page) |
|
PageRollResult<T> |
DBBaseGenericServiceImpl.rollPage(ColumnSelector<T> columns,
QueryConditionWrapper<T> wrapper,
SerializableFunction<T,Object> sortColumn,
OrderTypeEnum orderType,
Integer size,
Integer page) |
|
List<T> |
DBBaseGenericService.select(ColumnSelector<T> columns,
QueryConditionWrapper<T> wrapper,
SerializableFunction<T,Object> sortColumn,
OrderTypeEnum orderType,
int offset,
int limit) |
多条件,指定返回列,可排序的单表查询
|
List<T> |
DBBaseGenericServiceImpl.select(ColumnSelector<T> columns,
QueryConditionWrapper<T> wrapper,
SerializableFunction<T,Object> orderColumn,
OrderTypeEnum orderType,
int offset,
int limit) |
|
List<T> |
GenericQueryDao.select(Class<T> entityClass,
ColumnSelector<T> columns,
QueryConditionWrapper<T> wrapper,
SerializableFunction<T,Object> sortColumn,
OrderTypeEnum orderType,
int offset,
int limit) |
|
List<T> |
GenericQueryDAOImpl.select(Class<T> entityClass,
ColumnSelector<T> columns,
QueryConditionWrapper<T> wrapper,
SerializableFunction<T,Object> orderColumn,
OrderTypeEnum orderType,
int offset,
int limit) |
|
-