Authorization: Bearer ********************
{
"title": "更新日志记录",
"contents": [
"后端完成更新日志相关接口", "前端完成日志记录渲染", "优化若干逻辑"
],
"date": "2025-01-16",
"remark": "年前完成"
}
curl --location --request POST 'http://10.12.186.133:30924/zspt/develop' \
--header 'Authorization;' \
--header 'Content-Type: application/json' \
--data-raw '{
"title": "更新日志记录",
"contents": [
"后端完成更新日志相关接口", "前端完成日志记录渲染", "优化若干逻辑"
],
"date": "2025-01-16",
"remark": "年前完成"
}'
{
"code": 0,
"msg": null,
"data": {
"id": "3",
"title": "更新日志记录",
"contents": [
"后端完成更新日志相关接口",
"前端完成日志记录渲染",
"优化若干逻辑"
],
"date": "2025-01-16",
"remark": "年前完成"
},
"ok": true
}