索引
All Classes and Interfaces|常量字段值|所有程序包
A
B
- beanClass() - annotation interface 中的元素 top.tangyh.basic.annotation.echo.Echo
-
自动注入值的类型, 用于强制转换
C
- CANON_EQ - enum class 中的枚举常量 top.tangyh.basic.annotation.constraints.NotEmptyPattern.Flag
-
Enables canonical equivalence.
- CASE_INSENSITIVE - enum class 中的枚举常量 top.tangyh.basic.annotation.constraints.NotEmptyPattern.Flag
-
Enables case-insensitive matching.
- COMMENTS - enum class 中的枚举常量 top.tangyh.basic.annotation.constraints.NotEmptyPattern.Flag
-
Permits whitespace and comments in pattern.
- controllerApiValue() - annotation interface 中的元素 top.tangyh.basic.annotation.log.WebLog
-
是否拼接Controller类上@Api注解的描述值
D
- dictType() - annotation interface 中的元素 top.tangyh.basic.annotation.echo.Echo
-
自动注入值是字典时,需要指定该字典的key(def_dict 表的 parent_key 字段)
- DOTALL - enum class 中的枚举常量 top.tangyh.basic.annotation.constraints.NotEmptyPattern.Flag
-
Enables dotall mode.
E
- Echo - top.tangyh.basic.annotation.echo中的Annotation Interface
-
在某个对象的字段上标记该注解,该字段的值将被主动注入
- EchoResult - top.tangyh.basic.annotation.echo中的Annotation Interface
-
将该注解标记在service方法上, 调用该方法后,返回值中标记了@Echo 注解的字段将会自动注入属性
- enabled() - annotation interface 中的元素 top.tangyh.basic.annotation.log.WebLog
-
是否启用 操作日志 禁用控制优先级:lamp.log.enabled = false > 控制器类上@WebLog(enabled = false) > 控制器方法上@WebLog(enabled = false)
- ENUM_API - annotation interface中的静态变量 top.tangyh.basic.annotation.echo.Echo
F
- flags() - annotation interface 中的元素 top.tangyh.basic.annotation.constraints.NotEmptyPattern
G
- getValue() - enum class中的方法 top.tangyh.basic.annotation.constraints.NotEmptyPattern.Flag
- groups() - annotation interface 中的元素 top.tangyh.basic.annotation.constraints.NotEmptyPattern
I
- ignoreFields() - annotation interface 中的元素 top.tangyh.basic.annotation.echo.EchoResult
- IgnoreResponseBodyAdvice - top.tangyh.basic.annotation.response中的Annotation Interface
-
忽略全局响应包装
- isEmployee() - annotation interface 中的元素 top.tangyh.basic.annotation.user.LoginUser
-
是否只查询员工信息,true则通过rpc接口查询
- isFull() - annotation interface 中的元素 top.tangyh.basic.annotation.user.LoginUser
-
是否查询SysUser对象所有信息,true则通过rpc接口查询
- isMainOrg() - annotation interface 中的元素 top.tangyh.basic.annotation.user.LoginUser
-
是否只查询主组织信息,true则通过rpc接口查询
- isOrg() - annotation interface 中的元素 top.tangyh.basic.annotation.user.LoginUser
-
是否只查询组织信息,true则通过rpc接口查询
- isPosition() - annotation interface 中的元素 top.tangyh.basic.annotation.user.LoginUser
-
是否只查询岗位信息,true则通过rpc接口查询
- isResource() - annotation interface 中的元素 top.tangyh.basic.annotation.user.LoginUser
-
是否只查询 资源 信息,true则通过rpc接口查询
- isRoles() - annotation interface 中的元素 top.tangyh.basic.annotation.user.LoginUser
-
是否只查询角色信息,true则通过rpc接口查询
- isUser() - annotation interface 中的元素 top.tangyh.basic.annotation.user.LoginUser
-
是否只查询用户信息,true则通过rpc接口查询
L
- LoginUser - top.tangyh.basic.annotation.user中的Annotation Interface
-
请求的方法参数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
- message() - annotation interface 中的元素 top.tangyh.basic.annotation.constraints.NotEmptyPattern
- modular() - annotation interface 中的元素 top.tangyh.basic.annotation.log.WebLog
-
模块
- MULTILINE - enum class 中的枚举常量 top.tangyh.basic.annotation.constraints.NotEmptyPattern.Flag
-
Enables multiline mode.
N
- NotEmptyPattern - top.tangyh.basic.annotation.constraints中的Annotation Interface
-
表单字段验证:正则表达式
- NotEmptyPattern.Flag - top.tangyh.basic.annotation.constraints中的Enum Class
-
Possible Regexp flags.
- NotEmptyPattern.List - top.tangyh.basic.annotation.constraints中的Annotation Interface
-
Defines several
NotEmptyPatternannotations on the same element.
P
- payload() - annotation interface 中的元素 top.tangyh.basic.annotation.constraints.NotEmptyPattern
R
- ref() - annotation interface 中的元素 top.tangyh.basic.annotation.echo.Echo
-
回显到那个字段
- regexp() - annotation interface 中的元素 top.tangyh.basic.annotation.constraints.NotEmptyPattern
- request() - annotation interface 中的元素 top.tangyh.basic.annotation.log.WebLog
-
是否记录方法的入参
- requestByError() - annotation interface 中的元素 top.tangyh.basic.annotation.log.WebLog
-
若设置了 request = false、requestByError = true,则方法报错时,依然记录请求的入参
- response() - annotation interface 中的元素 top.tangyh.basic.annotation.log.WebLog
-
是否记录返回值
T
- TenantLine - top.tangyh.basic.annotation.database中的Annotation Interface
- top.tangyh.basic.annotation.constraints - 程序包 top.tangyh.basic.annotation.constraints
- top.tangyh.basic.annotation.database - 程序包 top.tangyh.basic.annotation.database
- top.tangyh.basic.annotation.echo - 程序包 top.tangyh.basic.annotation.echo
- top.tangyh.basic.annotation.log - 程序包 top.tangyh.basic.annotation.log
- top.tangyh.basic.annotation.response - 程序包 top.tangyh.basic.annotation.response
- top.tangyh.basic.annotation.user - 程序包 top.tangyh.basic.annotation.user
U
- UNICODE_CASE - enum class 中的枚举常量 top.tangyh.basic.annotation.constraints.NotEmptyPattern.Flag
-
Enables Unicode-aware case folding.
- UNIX_LINES - enum class 中的枚举常量 top.tangyh.basic.annotation.constraints.NotEmptyPattern.Flag
-
Enables Unix lines mode.
V
- value() - annotation interface 中的元素 top.tangyh.basic.annotation.constraints.NotEmptyPattern.List
- value() - annotation interface 中的元素 top.tangyh.basic.annotation.database.TenantLine
- value() - annotation interface 中的元素 top.tangyh.basic.annotation.log.WebLog
-
操作日志的描述, 支持spring 的 SpEL 表达式。
- valueOf(String) - enum class中的静态方法 top.tangyh.basic.annotation.constraints.NotEmptyPattern.Flag
-
Returns the enum constant of this class with the specified name.
- values() - enum class中的静态方法 top.tangyh.basic.annotation.constraints.NotEmptyPattern.Flag
-
Returns an array containing the constants of this enum class, in the order they are declared.
W
- WebLog - top.tangyh.basic.annotation.log中的Annotation Interface
-
操作日志注解
All Classes and Interfaces|常量字段值|所有程序包