{
"post_id": 1,
"old_status": "排队",
"new_status": "已发表"
}
curl --location --request PUT '/v1/post/update-status' \
--header 'Content-Type: application/json' \
--data-raw '{
"post_id": 1,
"old_status": "排队",
"new_status": "已发表"
}'
{
"code": 0,
"msg": "ok",
"data": {}
}