- 公共模块
- 枚举
- 文件
- 本地缓存[caffeine]
- Redis缓存
- 字典
- 日志
- 配置
- Quartz任务
- Excel
- 事件
- jwt
- 校验
- webplus
- async
- 进度条
- 二级缓存
- 电子邮件
- 日志监控
- 管道业务流[pipeline]
- 安全模块
枚举序列化反序列化测试-请求体参数
POST
/common/enums/test/se-de-bo
请求参数
Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token示例:
Authorization: Bearer ********************
Body 参数application/json
flag
string
FlagEnum枚举
profileSimple
string
ProfileSimpleEnum枚举
msg
string
消息
示例
{
"flag": "string",
"profileSimple": "string",
"msg": "string"
}
返回响应
🟢200成功
application/json
Body
code
number
返回code
message
string
消息
data
object (枚举请求体数据对象)
数据
flag
string
FlagEnum枚举
profileSimple
string
ProfileSimpleEnum枚举
msg
string
消息
currentTime
string <date-time>
服务器响应时间
正则匹配:
yyyy-MM-dd HH:mm:ss
tranceId
string
请求id
示例
{
"code": 0,
"message": "string",
"data": {
"flag": "string",
"profileSimple": "string",
"msg": "string"
},
"currentTime": "2019-08-24T14:15:22Z",
"tranceId": "string"
}
修改于 2024-06-26 09:42:45