姓名解析
POST
/uniapp-service/api/name/analysis请求参数
Body 参数application/json
lastname
string
必需
surname
string
必需
示例
{
"lastname": "string",
"surname": "string"
}
示例代码
返回响应
成功(200)
成功(201)
没有权限(401)
禁止访问(403)
记录不存在(404)
HTTP 状态码: 200
内容格式: JSON*/*
OK
数据结构
接口调用返回结果
code
integer <int32>
必需
返回结果状态码,0为成功,非0为失败
示例值:
0
message
string
返回结果说明信息
示例值:
执行成功
result
object (NameAnalysisVO)
返回结果数据
fiveDetailHtml
string
可选
tableHtml
string
可选
totalEvaluate
string
可选
totalScore
string
可选
success
boolean
是否成功标志
示例值:
true
timestamp
integer <int64>
返回的时间戳
示例
{
"code": 0,
"message": "执行成功",
"result": {
"fiveDetailHtml": "string",
"tableHtml": "string",
"totalEvaluate": "string",
"totalScore": "string"
},
"success": true,
"timestamp": 0
}
最后修改时间: 2 个月前