AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
## 更改订单状态 ~~~[api] post:/server/order/changeStatus *int:id#订单ID *int:status#状态,允许值:1,2 <<< success { "code": 1, "msg": "更改状态成功" } <<< error { "code": 0, "msg": "订单不存在" } <<< error { "code": 0, "msg": "状态参数不能为空" } <<< error { "code": 0, "msg": "仅允许把待处理的订单更改为处理中" } <<< error { "code": 0, "msg": "仅允许把处理中的订单更改为已完成" } ~~~