{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "帖子id"
},
"title": {
"type": "string",
"description": "帖子标题"
},
"content": {
"type": "string",
"description": "帖子内容"
},
"coverImage": {
"type": "string",
"description": "帖子封面图片路径地址"
},
"userId": {
"type": "string",
"description": "发帖者id"
},
"headPortrait": {
"type": "string",
"description": "发帖用户头像路径地址"
},
"currentPage": {
"type": "string",
"description": "分页时当前页数"
},
"pageSize": {
"type": "string",
"description": "分页时总页数"
}
},
"required": [
"id",
"title",
"content",
"coverImage",
"userId",
"headPortrait",
"currentPage",
"pageSize"
],
"x-apifox-orders": [
"id",
"title",
"content",
"coverImage",
"userId",
"headPortrait",
"currentPage",
"pageSize"
]
}
curl --location --request PUT '43.139.194.209:8088/soSocial/update' \
--header 'Content-Type: application/json' \
--data-raw '{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "帖子id"
},
"title": {
"type": "string",
"description": "帖子标题"
},
"content": {
"type": "string",
"description": "帖子内容"
},
"coverImage": {
"type": "string",
"description": "帖子封面图片路径地址"
},
"userId": {
"type": "string",
"description": "发帖者id"
},
"headPortrait": {
"type": "string",
"description": "发帖用户头像路径地址"
},
"currentPage": {
"type": "string",
"description": "分页时当前页数"
},
"pageSize": {
"type": "string",
"description": "分页时总页数"
}
},
"required": [
"id",
"title",
"content",
"coverImage",
"userId",
"headPortrait",
"currentPage",
"pageSize"
],
"x-apifox-orders": [
"id",
"title",
"content",
"coverImage",
"userId",
"headPortrait",
"currentPage",
"pageSize"
]
}'
{"code":200,"msg":"操作成功"}