跳过导航链接
B D E F G I K L M N O P R S T V 

B

BaseEnum - top.tangyh.basic.base中的接口
枚举类型基类

D

DataScope - top.tangyh.basic.database.mybatis.auth中的类
 
DataScope() - 类 的构造器top.tangyh.basic.database.mybatis.auth.DataScope
 
DataScopeType - top.tangyh.basic.database.mybatis.auth中的枚举
实体注释中生成的类型枚举 角色

E

Echo - top.tangyh.basic.annotation.echo中的注释类型
在某个对象的字段上标记该注解,该字段的值将被主动注入 如: \@Echo(api = "dictionaryServiceImpl") private String nation; \@Echo(api = "dictionaryServiceImpl") private RemoteData nation; \@Echo(api = "dictionaryApi") private RemoteData nation; \@Echo(api = "xxx.xxx.xxx.UserApi", beanClass = User.class) private RemoteData user; 强烈建议:不要对象之间互相依赖 如: User 想要注入 File, File也想注入User
EchoResult - top.tangyh.basic.annotation.echo中的注释类型
将该注解标记在service方法上, 调用该方法后,返回值中标记了@Echo 注解的字段将会自动注入属性 注意,该方法不能写在 Mapper 的方法上。
EchoVO - top.tangyh.basic.model中的接口
注入VO 父类
eq(String) - 接口 中的方法top.tangyh.basic.base.BaseEnum
判断val是否跟当前枚举相等
eq(DataScopeType) - 枚举 中的方法top.tangyh.basic.database.mybatis.auth.DataScopeType
 

F

findByIds(Set<Serializable>) - 接口 中的方法top.tangyh.basic.model.LoadService
根据id查询待回显参数

G

get(String) - 枚举 中的静态方法top.tangyh.basic.database.mybatis.auth.DataScopeType
 
get(Integer) - 枚举 中的静态方法top.tangyh.basic.database.mybatis.auth.DataScopeType
 
getCode() - 接口 中的方法top.tangyh.basic.base.BaseEnum
编码
getCode() - 枚举 中的方法top.tangyh.basic.database.mybatis.auth.DataScopeType
 
getData(RemoteData<K, D>) - 类 中的静态方法top.tangyh.basic.model.RemoteData
已过时。
获取对象的 data
getDesc() - 接口 中的方法top.tangyh.basic.base.BaseEnum
描述
getEchoMap() - 接口 中的方法top.tangyh.basic.model.EchoVO
回显值 集合
getExtra() - 接口 中的方法top.tangyh.basic.base.BaseEnum
扩展参数
getKey(RemoteData<K, D>) - 类 中的静态方法top.tangyh.basic.model.RemoteData
已过时。
获取对象的 主键key
getKey(RemoteData<K, D>, K) - 类 中的静态方法top.tangyh.basic.model.RemoteData
已过时。
 
getValue() - 枚举 中的方法top.tangyh.basic.annotation.constraints.NotEmptyPattern.Flag
 
getValue() - 接口 中的方法top.tangyh.basic.base.BaseEnum
枚举值

I

IgnoreResponseBodyAdvice - top.tangyh.basic.annotation.base中的注释类型
忽略全局响应包装
IValidatable - top.tangyh.basic.base.validation中的接口
实现了此接口,表示此类将会支持验证框架。

K

Kv - top.tangyh.basic.model中的类
键值对 通用对象
Kv() - 类 的构造器top.tangyh.basic.model.Kv
 

L

LoadService - top.tangyh.basic.model中的接口
加载数据 3.2.5 版本开始,只保留一个方法,若一个表,想要有多重回显场景,可以新建多个实现类,返回不一样的Map
LoginUser - top.tangyh.basic.annotation.user中的注释类型
请求的方法参数SysUser上添加该注解,则注入当前登录人信息 例1:public void test(@LoginUser SysUser user) // 取BaseContextHandler中的 用户id、账号、姓名、组织id、岗位id等信息 例2:public void test(@LoginUser(isRoles = true) SysUser user) //能获取SysUser对象的实时的用户信息和角色信息 例3:public void test(@LoginUser(isOrg = true) SysUser user) //能获取SysUser对象的实时的用户信息和组织信息 例4:public void test(@LoginUser(isStation = true) SysUser user) //能获取SysUser对象的实时的用户信息和岗位信息 例5:public void test(@LoginUser(isFull = true) SysUser user) //能获取SysUser对象的所有信息 例6:public void test(@LoginUser(isResource = true) SysUser user) //能获取SysUser对象的实时的用户信息和资源信息

M

match(String, DataScopeType) - 枚举 中的静态方法top.tangyh.basic.database.mybatis.auth.DataScopeType
 
match(Integer, DataScopeType) - 枚举 中的静态方法top.tangyh.basic.database.mybatis.auth.DataScopeType
 

N

NotEmptyPattern - top.tangyh.basic.annotation.constraints中的注释类型
表单字段验证:正则表达式 跟 javax.validation.constraints.Pattern 的区别在于: 本类校验时,传递过来的参数为null或者""时,不会校验正则表达式
NotEmptyPattern.Flag - top.tangyh.basic.annotation.constraints中的枚举
Possible Regexp flags.
NotEmptyPattern.List - top.tangyh.basic.annotation.constraints中的注释类型
Defines several NotEmptyPattern annotations on the same element.

O

OptLogDTO - top.tangyh.basic.log.entity中的类
实体类 系统日志
OptLogDTO() - 类 的构造器top.tangyh.basic.log.entity.OptLogDTO
 

P

PreAuth - top.tangyh.basic.annotation.security中的注释类型
权限注解 用于检查请求者是否拥有改URI接口的权限。

R

RemoteData<K,D> - top.tangyh.basic.model中的类
已过时。
RemoteData(K) - 类 的构造器top.tangyh.basic.model.RemoteData
已过时。
 

S

SysLog - top.tangyh.basic.annotation.log中的注释类型
操作日志注解

T

top.tangyh.basic.annotation.base - 程序包 top.tangyh.basic.annotation.base
 
top.tangyh.basic.annotation.constraints - 程序包 top.tangyh.basic.annotation.constraints
 
top.tangyh.basic.annotation.echo - 程序包 top.tangyh.basic.annotation.echo
 
top.tangyh.basic.annotation.log - 程序包 top.tangyh.basic.annotation.log
 
top.tangyh.basic.annotation.security - 程序包 top.tangyh.basic.annotation.security
 
top.tangyh.basic.annotation.user - 程序包 top.tangyh.basic.annotation.user
 
top.tangyh.basic.base - 程序包 top.tangyh.basic.base
 
top.tangyh.basic.base.validation - 程序包 top.tangyh.basic.base.validation
 
top.tangyh.basic.database.mybatis.auth - 程序包 top.tangyh.basic.database.mybatis.auth
 
top.tangyh.basic.log.entity - 程序包 top.tangyh.basic.log.entity
 
top.tangyh.basic.model - 程序包 top.tangyh.basic.model
 
toString() - 类 中的方法top.tangyh.basic.model.RemoteData
已过时。
 

V

value() - 接口 中的方法top.tangyh.basic.base.validation.IValidatable
此类需要检验什么值 支持length长度检验。
value() - 类 中的方法top.tangyh.basic.model.RemoteData
已过时。
用于Hibernate-Validator 自定义校验规则
valueOf(String) - 枚举 中的静态方法top.tangyh.basic.annotation.constraints.NotEmptyPattern.Flag
返回带有指定名称的该类型的枚举常量。
valueOf(String) - 枚举 中的静态方法top.tangyh.basic.database.mybatis.auth.DataScopeType
返回带有指定名称的该类型的枚举常量。
values() - 枚举 中的静态方法top.tangyh.basic.annotation.constraints.NotEmptyPattern.Flag
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。
values() - 枚举 中的静态方法top.tangyh.basic.database.mybatis.auth.DataScopeType
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。
B D E F G I K L M N O P R S T V 
跳过导航链接

Copyright © 2021. All rights reserved.