订单管理
订单插入
创建新订单记录
post/order/insert
Request body
Example request
{
"productName": "GitLab企业版",
"quantity": 1,
"customerInfo": {
"name": "张三",
"company": "极狐信息技术有限公司",
"email": "zhangsan@example.com"
}
}Response
订单创建成功
Example response
{
"code": 200,
"message": "Submitted successfully"
}