跳过导航链接
C E F G I J L M N O P Q R S T 

C

compareTo(SortSupportEntity) - 接口 中的方法org.hswebframework.web.api.crud.entity.SortSupportEntity
 
copyFrom(Object, String...) - 接口 中的方法org.hswebframework.web.api.crud.entity.Entity
 
copyProperties(S, T) - 接口 中的方法org.hswebframework.web.api.crud.entity.EntityFactory
拷贝对象的属性
copyTo(Class<T>, String...) - 接口 中的方法org.hswebframework.web.api.crud.entity.Entity
 

E

empty() - 类 中的静态方法org.hswebframework.web.api.crud.entity.PagerResult
 
Entity - org.hswebframework.web.api.crud.entity中的接口
实体总接口,所有实体需实现此接口
EntityFactory - org.hswebframework.web.api.crud.entity中的接口
实体工厂接口,系统各个地方使用此接口来创建实体,在实际编码中也应该使用此接口来创建实体,而不是使用new方式来创建
expandTree2List(T, IDGenerator<PK>) - 接口 中的静态方法org.hswebframework.web.api.crud.entity.TreeSupportEntity
 
expandTree2List(T, List<T>, IDGenerator<PK>) - 接口 中的静态方法org.hswebframework.web.api.crud.entity.TreeSupportEntity
 
expandTree2List(T, List<T>, IDGenerator<PK>, BiConsumer<T, List<T>>) - 接口 中的静态方法org.hswebframework.web.api.crud.entity.TreeSupportEntity
将树形结构转为列表结构,并填充对应的数据。

F

forEach(Collection<T>, Consumer<T>) - 接口 中的静态方法org.hswebframework.web.api.crud.entity.TreeSupportEntity
 

G

GenericEntity<PK> - org.hswebframework.web.api.crud.entity中的类
 
GenericEntity() - 类 的构造器org.hswebframework.web.api.crud.entity.GenericEntity
 
GenericTreeSortSupportEntity<PK> - org.hswebframework.web.api.crud.entity中的类
支持树形结构,排序的实体类,要使用树形结构,排序功能的实体类直接继承该类
GenericTreeSortSupportEntity() - 类 的构造器org.hswebframework.web.api.crud.entity.GenericTreeSortSupportEntity
 
getChildren() - 接口 中的方法org.hswebframework.web.api.crud.entity.TreeSupportEntity
 
getChildren(PK) - 接口 中的方法org.hswebframework.web.api.crud.entity.TreeSupportEntity.TreeHelper
根据主键获取子节点
getCreateTime() - 接口 中的方法org.hswebframework.web.api.crud.entity.RecordCreationEntity
 
getCreatorId() - 接口 中的方法org.hswebframework.web.api.crud.entity.RecordCreationEntity
 
getCreatorIdProperty() - 接口 中的方法org.hswebframework.web.api.crud.entity.RecordCreationEntity
 
getId() - 接口 中的方法org.hswebframework.web.api.crud.entity.TreeSupportEntity
 
getInstanceType(Class<T>) - 接口 中的方法org.hswebframework.web.api.crud.entity.EntityFactory
根据类型获取实体的真实的实体类型, 可通过此方法获取获取已拓展的实体类型,如:
factory.getInstanceType(MyBeanInterface.class);
getInstanceType(Class<T>, boolean) - 接口 中的方法org.hswebframework.web.api.crud.entity.EntityFactory
 
getLevel() - 接口 中的方法org.hswebframework.web.api.crud.entity.TreeSupportEntity
 
getModifierId() - 接口 中的方法org.hswebframework.web.api.crud.entity.RecordModifierEntity
 
getModifierIdProperty() - 接口 中的方法org.hswebframework.web.api.crud.entity.RecordModifierEntity
 
getModifyTime() - 接口 中的方法org.hswebframework.web.api.crud.entity.RecordModifierEntity
 
getNode(PK) - 接口 中的方法org.hswebframework.web.api.crud.entity.TreeSupportEntity.TreeHelper
根据id获取节点
getParentId() - 接口 中的方法org.hswebframework.web.api.crud.entity.TreeSupportEntity
 
getParentPath(String) - 接口 中的静态方法org.hswebframework.web.api.crud.entity.TreeSupportEntity
根据path获取父节点的path
getPath() - 接口 中的方法org.hswebframework.web.api.crud.entity.TreeSupportEntity
 
getSortIndex() - 接口 中的方法org.hswebframework.web.api.crud.entity.SortSupportEntity
 
getTerms() - 类 中的方法org.hswebframework.web.api.crud.entity.QueryParamEntity
 

I

ImplementFor - org.hswebframework.web.api.crud.entity中的注释类型
 

J

jdbcTransactionManager - 接口 中的静态变量org.hswebframework.web.api.crud.entity.TransactionManagers
 

L

list2tree(Collection<N>, BiConsumer<N, List<N>>) - 接口 中的静态方法org.hswebframework.web.api.crud.entity.TreeSupportEntity
集合转为树形结构,返回根节点集合
list2tree(Collection<N>, BiConsumer<N, List<N>>, Predicate<N>) - 接口 中的静态方法org.hswebframework.web.api.crud.entity.TreeSupportEntity
 
list2tree(Collection<N>, BiConsumer<N, List<N>>, Function<TreeSupportEntity.TreeHelper<N, PK>, Predicate<N>>) - 接口 中的静态方法org.hswebframework.web.api.crud.entity.TreeSupportEntity
列表结构转为树结构,并返回根节点集合

M

modifierId - 接口 中的静态变量org.hswebframework.web.api.crud.entity.RecordModifierEntity
 
modifyTime - 接口 中的静态变量org.hswebframework.web.api.crud.entity.RecordModifierEntity
 

N

newInstance(Class<T>) - 接口 中的方法org.hswebframework.web.api.crud.entity.EntityFactory
根据类型创建实例 e.g.
newInstance(Class<T>, Class<? extends T>) - 接口 中的方法org.hswebframework.web.api.crud.entity.EntityFactory
根据类型创建实例,如果类型无法创建,则使用默认类型进行创建 e.g.
newInstance(Class<T>, S) - 接口 中的方法org.hswebframework.web.api.crud.entity.EntityFactory
创建实体并设置默认的属性
newInstance(Class<T>, Class<? extends T>, S) - 接口 中的方法org.hswebframework.web.api.crud.entity.EntityFactory
创建实体并设置默认的属性
newQuery() - 类 中的静态方法org.hswebframework.web.api.crud.entity.QueryParamEntity
 
noPaging() - 类 中的方法org.hswebframework.web.api.crud.entity.QueryParamEntity
 

O

of(int, List<E>) - 类 中的静态方法org.hswebframework.web.api.crud.entity.PagerResult
 
of(int, List<E>, QueryParam) - 类 中的静态方法org.hswebframework.web.api.crud.entity.PagerResult
 
of() - 类 中的静态方法org.hswebframework.web.api.crud.entity.QueryParamEntity
创建一个空的查询参数实体,该实体无任何参数.
of(String, Object) - 类 中的静态方法org.hswebframework.web.api.crud.entity.QueryParamEntity
 
org.hswebframework.web.api.crud.entity - 程序包 org.hswebframework.web.api.crud.entity
 

P

PagerResult<E> - org.hswebframework.web.api.crud.entity中的类
 
PagerResult() - 类 的构造器org.hswebframework.web.api.crud.entity.PagerResult
 
PagerResult(int, List<E>) - 类 的构造器org.hswebframework.web.api.crud.entity.PagerResult
 
parse(String) - 类 中的静态方法org.hswebframework.web.api.crud.entity.TermExpressionParser
 
parseOrder(String) - 类 中的静态方法org.hswebframework.web.api.crud.entity.TermExpressionParser
解析排序表达式 age asc,score desc

Q

QueryParamEntity - org.hswebframework.web.api.crud.entity中的类
查询参数实体,使用easyorm进行动态查询参数构建
可通过静态方法创建:
如: QueryParamEntity.of("id",id);
QueryParamEntity() - 类 的构造器org.hswebframework.web.api.crud.entity.QueryParamEntity
 

R

r2dbcTransactionManager - 接口 中的静态变量org.hswebframework.web.api.crud.entity.TransactionManagers
 
RecordCreationEntity - org.hswebframework.web.api.crud.entity中的接口
记录创建信息的实体类,包括创建人和创建时间。
RecordModifierEntity - org.hswebframework.web.api.crud.entity中的接口
记录修改信息的实体类,包括修改人和修改时间。

S

setCreateTime(Long) - 接口 中的方法org.hswebframework.web.api.crud.entity.RecordCreationEntity
 
setCreateTimeNow() - 接口 中的方法org.hswebframework.web.api.crud.entity.RecordCreationEntity
 
setCreatorId(String) - 接口 中的方法org.hswebframework.web.api.crud.entity.RecordCreationEntity
 
setId(PK) - 接口 中的方法org.hswebframework.web.api.crud.entity.TreeSupportEntity
 
setLevel(Integer) - 接口 中的方法org.hswebframework.web.api.crud.entity.TreeSupportEntity
 
setModifierId(String) - 接口 中的方法org.hswebframework.web.api.crud.entity.RecordModifierEntity
 
setModifyTime(Long) - 接口 中的方法org.hswebframework.web.api.crud.entity.RecordModifierEntity
 
setModifyTimeNow() - 接口 中的方法org.hswebframework.web.api.crud.entity.RecordModifierEntity
 
setOrderBy(String) - 类 中的方法org.hswebframework.web.api.crud.entity.QueryParamEntity
表达式方式排序
setParentId(PK) - 接口 中的方法org.hswebframework.web.api.crud.entity.TreeSupportEntity
 
setPath(String) - 接口 中的方法org.hswebframework.web.api.crud.entity.TreeSupportEntity
 
setSortIndex(Long) - 接口 中的方法org.hswebframework.web.api.crud.entity.SortSupportEntity
 
setWhere(String) - 类 中的方法org.hswebframework.web.api.crud.entity.QueryParamEntity
表达式查询条件,没有SQL注入问题,放心使用
SortSupportEntity - org.hswebframework.web.api.crud.entity中的接口
 

T

TermExpressionParser - org.hswebframework.web.api.crud.entity中的类
动态条件表达式解析器 name=测试 and age=test
TermExpressionParser() - 类 的构造器org.hswebframework.web.api.crud.entity.TermExpressionParser
 
toNestQuery() - 类 中的方法org.hswebframework.web.api.crud.entity.QueryParamEntity
将已有的条件包装到一个嵌套的条件里,并返回一个Query对象.例如: entity.toNestQuery().and("userId",userId); 原有条件: name=?
toNestQuery(Consumer<Query<T, QueryParamEntity>>) - 类 中的方法org.hswebframework.web.api.crud.entity.QueryParamEntity
将已有的条件包装到一个嵌套的条件里,并返回一个Query对象.例如: entity.toNestQuery(query->query.and("userId",userId)); 原有条件: name=?
toQuery() - 类 中的方法org.hswebframework.web.api.crud.entity.QueryParamEntity
 
toString(String...) - 类 中的方法org.hswebframework.web.api.crud.entity.GenericEntity
 
toString() - 类 中的方法org.hswebframework.web.api.crud.entity.GenericEntity
 
TransactionManagers - org.hswebframework.web.api.crud.entity中的接口
 
TreeSortSupportEntity<PK> - org.hswebframework.web.api.crud.entity中的接口
支持树形结构,排序的实体类,要使用树形结构,排序功能的实体类直接继承该类
TreeSupportEntity<PK> - org.hswebframework.web.api.crud.entity中的接口
 
TreeSupportEntity.TreeHelper<T,PK> - org.hswebframework.web.api.crud.entity中的接口
树结构Helper
tryValidate(Class<?>...) - 接口 中的方法org.hswebframework.web.api.crud.entity.Entity
 
C E F G I J L M N O P Q R S T 
跳过导航链接

Copyright © 2016–2020. All rights reserved.