序列化表格
-
程序包 io.github.lishangbu.avalon.authorization.entity
-
类 io.github.lishangbu.avalon.authorization.entity.Oauth2Authorization
class Oauth2Authorization extends Object implements Serializable- serialVersionUID:
- 620L
-
序列化字段
-
accessTokenExpiresAt
Instant accessTokenExpiresAt
访问令牌过期时间 -
accessTokenIssuedAt
Instant accessTokenIssuedAt
访问令牌签发时间 -
accessTokenMetadata
String accessTokenMetadata
访问令牌元数据 -
accessTokenScopes
String accessTokenScopes
访问令牌范围 -
accessTokenValue
String accessTokenValue
访问令牌值 -
attributes
String attributes
属性 -
authorizationCodeExpiresAt
Instant authorizationCodeExpiresAt
授权码过期时间 -
authorizationCodeIssuedAt
Instant authorizationCodeIssuedAt
授权码签发时间 -
authorizationCodeMetadata
String authorizationCodeMetadata
授权码元数据 -
authorizationCodeValue
String authorizationCodeValue
授权码值 -
authorizationGrantType
String authorizationGrantType
授权方式 -
authorizedScopes
String authorizedScopes
授权范围 -
deviceCodeExpiresAt
Instant deviceCodeExpiresAt
设备代码过期时间 -
deviceCodeIssuedAt
Instant deviceCodeIssuedAt
设备代码签发时间 -
deviceCodeMetadata
String deviceCodeMetadata
设备代码元数据 -
deviceCodeValue
String deviceCodeValue
设备代码值 -
id
String id
唯一标识符 -
oidcIdTokenClaims
String oidcIdTokenClaims
OIDC ID 令牌声明 -
oidcIdTokenExpiresAt
Instant oidcIdTokenExpiresAt
OIDC ID 令牌过期时间 -
oidcIdTokenIssuedAt
Instant oidcIdTokenIssuedAt
OIDC ID 令牌签发时间 -
oidcIdTokenMetadata
String oidcIdTokenMetadata
OIDC ID 令牌元数据 -
oidcIdTokenValue
String oidcIdTokenValue
OIDC ID 令牌值 -
principalName
String principalName
主体名称 -
refreshTokenExpiresAt
Instant refreshTokenExpiresAt
刷新令牌过期时间 -
refreshTokenIssuedAt
Instant refreshTokenIssuedAt
刷新令牌签发时间 -
refreshTokenMetadata
String refreshTokenMetadata
刷新令牌元数据 -
refreshTokenValue
String refreshTokenValue
刷新令牌值 -
registeredClientId
String registeredClientId
已注册的客户端 ID -
state
String state
状态 -
userCodeExpiresAt
Instant userCodeExpiresAt
用户代码过期时间 -
userCodeIssuedAt
Instant userCodeIssuedAt
用户代码签发时间 -
userCodeMetadata
String userCodeMetadata
用户代码元数据 -
userCodeValue
String userCodeValue
用户代码值
-
-
类 io.github.lishangbu.avalon.authorization.entity.Oauth2AuthorizationConsent
class Oauth2AuthorizationConsent extends Object implements Serializable- serialVersionUID:
- 620L
-
类 io.github.lishangbu.avalon.authorization.entity.Oauth2RegisteredClient
class Oauth2RegisteredClient extends Object implements Serializable- serialVersionUID:
- 620L
-
序列化字段
-
accessTokenFormat
String accessTokenFormat
the token format for an access token,The default is self-contained -
accessTokenTimeToLive
String accessTokenTimeToLive
the time-to-live for an access token. The default is 5 minutes. -
authorizationCodeTimeToLive
String authorizationCodeTimeToLive
the time-to-live for an authorization code. The default is 5 minutes. -
authorizationGrantTypes
String authorizationGrantTypes
授权方式 -
clientAuthenticationMethods
String clientAuthenticationMethods
客户端认证方式 -
clientId
String clientId
客户端 ID -
clientIdIssuedAt
Instant clientIdIssuedAt
客户端 ID 签发时间 -
clientName
String clientName
客户端名称 -
clientSecret
String clientSecret
客户端密钥 -
clientSecretExpiresAt
Instant clientSecretExpiresAt
客户端密钥过期时间 -
deviceCodeTimeToLive
String deviceCodeTimeToLive
the time-to-live for an access token. The default is 5 minutes. -
id
String id
唯一标识符 -
idTokenSignatureAlgorithm
String idTokenSignatureAlgorithm
the JWS algorithm for signing the ID Token. The default is RS256. -
jwkSetUrl
String jwkSetUrl
the URL for the Client's JSON Web Key Set -
postLogoutRedirectUris
String postLogoutRedirectUris
登出后的重定向 URI -
redirectUris
String redirectUris
重定向 URI -
refreshTokenTimeToLive
String refreshTokenTimeToLive
the time-to-live for a refresh token. The default is 60 minutes. -
requireAuthorizationConsent
Boolean requireAuthorizationConsent
true if authorization consent is required when the client requests access. The default is false -
requireProofKey
Boolean requireProofKey
true if the client is required to provide a proof key challenge and verifier when performing the Authorization Code Grant flow. The default is false. -
reuseRefreshTokens
Boolean reuseRefreshTokens
Returns true if refresh tokens are reused when returning the access token response, or false if a new refresh token is issued. The default is true. -
scopes
String scopes
客户端授权的范围 -
tokenEndpointAuthenticationSigningAlgorithm
String tokenEndpointAuthenticationSigningAlgorithm
the JWS algorithm that must be used for signing the JWT used to authenticate the Client at the Token Endpoint for the private_key_jwt and client_secret_jwt authentication methods. -
x509CertificateBoundAccessTokens
Boolean x509CertificateBoundAccessTokens
true if access tokens must be bound to the client X509Certificate received during client authentication when using the tls_client_auth or self_signed_tls_client_auth method. The default is false. -
x509CertificateSubjectDn
String x509CertificateSubjectDn
the expected subject distinguished name associated to the client X509Certificate received during client authentication when using the tls_client_auth method
-
-
类 io.github.lishangbu.avalon.authorization.entity.Permission
class Permission extends Object implements Serializable- serialVersionUID:
- 620L
-
序列化字段
-
code
String code
权限编码 -
component
String component
组件路径 -
description
String description
描述 -
enabled
Boolean enabled
是否启用 -
icon
String icon
图标 -
id
Long id
主键 -
keepAlive
Boolean keepAlive
是否保持活动状态 -
layout
String layout
布局 -
method
String method
请求方法 -
name
String name
权限名称 -
orderNum
Integer orderNum
排序 -
parentId
Long parentId
父权限ID -
path
String path
路径 -
redirect
String redirect
重定向路径 -
show
Boolean show
是否展示在页面菜单 -
type
String type
权限类型,MENU-菜单,BUTTON-按钮
-
-
类 io.github.lishangbu.avalon.authorization.entity.Profile
class Profile extends Object implements Serializable- serialVersionUID:
- 620L
-
类 io.github.lishangbu.avalon.authorization.entity.Role
class Role extends Object implements Serializable- serialVersionUID:
- 620L
-
类 io.github.lishangbu.avalon.authorization.entity.User
class User extends Object implements Serializable- serialVersionUID:
- 620L
-
类 io.github.lishangbu.avalon.authorization.entity.UserRoleRelation
class UserRoleRelation extends Object implements Serializable- serialVersionUID:
- 620L
-
-
程序包 io.github.lishangbu.avalon.authorization.model
-
类 io.github.lishangbu.avalon.authorization.model.PermissionTreeNode
class PermissionTreeNode extends Permission implements Serializable-
序列化字段
-
children
List<PermissionTreeNode> children
-
-
-
-
程序包 io.github.lishangbu.avalon.dataset.entity
-
类 io.github.lishangbu.avalon.dataset.entity.Ability
class Ability extends Object implements Serializable- serialVersionUID:
- -67286465624739632L
-
类 io.github.lishangbu.avalon.dataset.entity.Berry
class Berry extends Object implements Serializable- serialVersionUID:
- 382523524754343414L
-
序列化字段
-
firmnessInternalName
String firmnessInternalName
树果的坚硬度(内部名称) -
growthTime
Integer growthTime
生长到下一个阶段所需的时间(小时) -
id
Long id
主键 -
internalName
String internalName
内部名称 -
maxHarvest
Integer maxHarvest
最大结果数 -
name
String name
名称 -
naturalGiftPower
Integer naturalGiftPower
搭配该树果使用“自然之恩”招式时的威力 -
naturalGiftTypeInternalName
String naturalGiftTypeInternalName
搭配该树果使用“自然之恩”招式时继承的属性类型 -
size
Integer size
大小(毫米) -
smoothness
Integer smoothness
光滑度 -
soilDryness
Integer soilDryness
生长时使土壤干燥的速度,数值越高土壤干燥越快
-
-
类 io.github.lishangbu.avalon.dataset.entity.BerryFirmness
class BerryFirmness extends Object implements Serializable- serialVersionUID:
- 379274096201847612L
-
类 io.github.lishangbu.avalon.dataset.entity.BerryFlavor
class BerryFlavor extends Object implements Serializable- serialVersionUID:
- -96613453269744846L
-
类 io.github.lishangbu.avalon.dataset.entity.EggGroup
class EggGroup extends Object implements Serializable- serialVersionUID:
- 161053086219293364L
-
类 io.github.lishangbu.avalon.dataset.entity.Item
class Item extends Object implements Serializable- serialVersionUID:
- -99781643102904453L
-
序列化字段
-
categoryInternalName
String categoryInternalName
此道具所属的类别(内部名称) -
cost
Integer cost
在商店中的价格 -
effect
String effect
简要效果描述 -
flingEffectInternalName
String flingEffectInternalName
使用此道具进行投掷行动时的效果(内部名称) -
flingPower
Integer flingPower
使用此道具进行投掷行动时的威力 -
id
Long id
主键 -
internalName
String internalName
内部名称 -
name
String name
道具名称 -
shortEffect
String shortEffect
简要效果描述 -
text
String text
道具文本
-
-
类 io.github.lishangbu.avalon.dataset.entity.ItemAttribute
class ItemAttribute extends Object implements Serializable- serialVersionUID:
- -45782438342388356L
-
类 io.github.lishangbu.avalon.dataset.entity.ItemAttributeRelation
class ItemAttributeRelation extends Object implements Serializable- serialVersionUID:
- -52048016504666011L
-
类 io.github.lishangbu.avalon.dataset.entity.ItemCategory
class ItemCategory extends Object implements Serializable- serialVersionUID:
- 698222055482015322L
-
类 io.github.lishangbu.avalon.dataset.entity.ItemFlingEffect
class ItemFlingEffect extends Object implements Serializable- serialVersionUID:
- 347310905850525502L
-
类 io.github.lishangbu.avalon.dataset.entity.ItemPocket
class ItemPocket extends Object implements Serializable- serialVersionUID:
- -63868359363578424L
-
类 io.github.lishangbu.avalon.dataset.entity.Machine
class Machine extends Object implements Serializable- serialVersionUID:
- 225851657308520018L
-
类 io.github.lishangbu.avalon.dataset.entity.Move
class Move extends Object implements Serializable- serialVersionUID:
- -30304372663754761L
-
序列化字段
-
accuracy
Integer accuracy
命中 -
ailmentChance
Integer ailmentChance
此攻击导致状态异常的可能性 -
ailmentInternalName
String ailmentInternalName
招式导致的状态异常(内部名称) -
categoryInternalName
String categoryInternalName
招式分类(内部名称) -
critRate
Integer critRate
暴击率加成 -
damageClassInternalName
String damageClassInternalName
此招式对目标造成的伤害类型(内部名称) -
drain
Integer drain
HP吸取(如果为正)或反作用伤害(如果为负),以造成伤害的百分比表示 -
effect
String effect
招式效果描述 -
effectChance
Integer effectChance
此招式效果发生的概率百分比值 -
flinchChance
Integer flinchChance
此攻击导致目标宝可梦畏缩的可能性 -
healing
Integer healing
攻击方宝可梦恢复的HP量,以其最大HP的百分比表示 -
id
Long id
主键 -
internalName
String internalName
内部名称 -
maxTurns
Integer maxTurns
此招式持续生效的最小回合数。如果总是只持续一回合,则为空 -
minHits
Integer minHits
此招式持续生效的最小回合数。如果总是只持续一回合,则为空 -
name
String name
道具口袋名称 -
power
Integer power
威力 -
pp
Integer pp
招式点数 -
priority
Integer priority
-8到8之间的值。设置战斗中招式执行的顺序 -
shortEffect
String shortEffect
招式简要效果描述 -
statChance
Integer statChance
此攻击导致目标宝可梦能力值变化的可能性 -
targetInternalName
String targetInternalName
接收攻击效果的目标类型(内部名称) -
text
String text
文本描述 -
typeInternalName
String typeInternalName
属性内部名称
-
-
类 io.github.lishangbu.avalon.dataset.entity.MoveAilment
class MoveAilment extends Object implements Serializable- serialVersionUID:
- -55400454442808113L
-
类 io.github.lishangbu.avalon.dataset.entity.MoveCategory
class MoveCategory extends Object implements Serializable- serialVersionUID:
- -43802367521703267L
-
类 io.github.lishangbu.avalon.dataset.entity.MoveDamageClass
class MoveDamageClass extends Object implements Serializable- serialVersionUID:
- -21460177120410805L
-
类 io.github.lishangbu.avalon.dataset.entity.MoveLearnMethod
class MoveLearnMethod extends Object implements Serializable- serialVersionUID:
- 240573508164457984L
-
类 io.github.lishangbu.avalon.dataset.entity.MoveTarget
class MoveTarget extends Object implements Serializable- serialVersionUID:
- 445025354746941748L
-
类 io.github.lishangbu.avalon.dataset.entity.Pokemon
class Pokemon extends Object implements Serializable- serialVersionUID:
- -16769441693768999L
-
类 io.github.lishangbu.avalon.dataset.entity.PokemonType
class PokemonType extends Object implements Serializable- serialVersionUID:
- 540341561900293078L
-
类 io.github.lishangbu.avalon.dataset.entity.Type
class Type extends Object implements Serializable- serialVersionUID:
- -68547309302497308L
-
类 io.github.lishangbu.avalon.dataset.entity.TypeDamageRelation
class TypeDamageRelation extends Object implements Serializable- serialVersionUID:
- 738084404669316218L
-
-
程序包 io.github.lishangbu.avalon.dufs.exception
-
异常错误类 io.github.lishangbu.avalon.dufs.exception.DirectoryAlreadyExistsException
class DirectoryAlreadyExistsException extends DufsException implements Serializable -
异常错误类 io.github.lishangbu.avalon.dufs.exception.DufsException
class DufsException extends RuntimeException implements Serializable -
异常错误类 io.github.lishangbu.avalon.dufs.exception.PathNotFoundException
class PathNotFoundException extends DufsException implements Serializable
-
-
程序包 io.github.lishangbu.avalon.ip2location.exception
-
异常错误类 io.github.lishangbu.avalon.ip2location.exception.EmptyIpAddressException
class EmptyIpAddressException extends IpToLocationException implements Serializable -
异常错误类 io.github.lishangbu.avalon.ip2location.exception.InvalidIpAddressException
class InvalidIpAddressException extends IpToLocationException implements Serializable -
异常错误类 io.github.lishangbu.avalon.ip2location.exception.IpToLocationException
class IpToLocationException extends RuntimeException implements Serializable -
异常错误类 io.github.lishangbu.avalon.ip2location.exception.Ipv6NotSupportException
class Ipv6NotSupportException extends RuntimeException implements Serializable -
异常错误类 io.github.lishangbu.avalon.ip2location.exception.MissingFileException
class MissingFileException extends IpToLocationException implements Serializable
-
-
程序包 io.github.lishangbu.avalon.json.exception
-
异常错误类 io.github.lishangbu.avalon.json.exception.JsonProcessingRuntimeException
class JsonProcessingRuntimeException extends RuntimeException implements Serializable
-
-
程序包 io.github.lishangbu.avalon.json.module
-
类 io.github.lishangbu.avalon.json.module.Jdk8JavaTimeModule
class Jdk8JavaTimeModule extends com.fasterxml.jackson.databind.module.SimpleModule implements Serializable
-
-
程序包 io.github.lishangbu.avalon.mybatis.pagehelper.properties
-
类 io.github.lishangbu.avalon.mybatis.pagehelper.properties.PageHelperProperties
class PageHelperProperties extends Properties implements Serializable
-
-
程序包 io.github.lishangbu.avalon.oauth2.authorizationserver.exception
-
异常错误类 io.github.lishangbu.avalon.oauth2.authorizationserver.exception.InvalidCaptchaException
class InvalidCaptchaException extends org.springframework.security.core.AuthenticationException implements Serializable
-
-
程序包 io.github.lishangbu.avalon.oauth2.authorizationserver.granter
-
类 io.github.lishangbu.avalon.oauth2.authorizationserver.granter.OAuth2PasswordAuthenticationToken
class OAuth2PasswordAuthenticationToken extends org.springframework.security.authentication.AbstractAuthenticationToken implements Serializable- serialVersionUID:
- -6067207202119450764L
-
-
程序包 io.github.lishangbu.avalon.oauth2.common.userdetails
-
类 io.github.lishangbu.avalon.oauth2.common.userdetails.UserInfo
class UserInfo extends Object implements Serializable- serialVersionUID:
- 620L
-
-
程序包 io.github.lishangbu.avalon.web.result
-
记录类 io.github.lishangbu.avalon.web.result.ApiResult
class ApiResult extends Record implements Serializable- serialVersionUID:
- 1L
-