添加友情链接
开发中POST
http://localhost:8098/admin/link添加友情链接。
请求参数
Body 参数application/json
displayName
string
链接名称
<= 128 字符
url
string
链接地址
<= 512 字符
logo
string | null
LOGO 地址
<= 512 字符
description
string | null
描述
<= 512 字符
priority
integer | null
优先级
优先级范围为 0 - 100,0 为默认,100 为最大。优先级越大,排序越靠前。
>= 0<= 100
默认值:
0
remark
string | null
备注
仅后台可见
<= 256 字符
示例
{
"displayName": "string",
"url": "string",
"logo": "string",
"description": "string",
"priority": 0,
"remark": "string"
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
必需
errMsg
null
必需
data
object
必需
linkId
integer
友情链接 ID
displayName
string
连接名称
url
string
链接地址
logo
string | null
LOGO 地址
description
string | null
描述
priority
integer
优先级
优先级范围为 0 - 10,0 为默认,10 为最大。优先级越大,排序越靠前。
>= 0<= 100
默认值:
0
createTime
integer
创建时间戳
lastModifyTime
integer | null
最后修改时间戳
示例
添加成功
{
"code": 200,
"errMsg": null,
"data": {
"linkId": 2,
"displayName": "这路过由提美教",
"url": "http://evlpjniwog.cn/clvuiok",
"logo": null,
"description": null,
"priority": 0,
"remark": null,
"createTime": 1709387722031,
"lastModifyTime": null
}
}
最后修改时间: 8 个月前