添加
[TOC]
简要描述
- 用户注册接口
请求URL
http://localhost:3030/orderafter
请求方式
- POST
参数
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
ordernum | 是 | string | 订单号 |
consignee | 是 | string | 收货人 |
shipper | 否 | string | 送货人 |
methodpayment | 否 | string | 支付方式 |
distribution | 否 | string | 配送 |
price | 否 | INTEGER | 价格 |
processingstate | 否 | string | 处理状态 |
ordertime | 否 | DATE | 订单时间 |
pay | 否 | string | 打款方式 |
applytime | 否 | DATE | 申请时间 |
audittime | 否 | DATE | 审核时间 |
orderno | 否 | string | 外键-订单表 |
payorder | 否 | string | 外键-支付表 |
返回示例
{
"id": 2,
"ordernum": "sasa1315",
"consignee": "圣剑",
"shipper": "张三",
"methodpayment": "支付宝",
"distribution": "汽车",
"price": "300",
"processingstate": "处理完毕",
"ordertime": "2023-05-22T16:00:00.000Z",
"pay": "支付宝零钱",
"applytime": "2023-05-22T16:00:00.000Z",
"audittime": "2023-05-22T16:00:00.000Z",
"orderno": "1",
"payorder": "1",
"updatedAt": "2023-05-24T02:25:26.388Z",
"createdAt": "2023-05-24T02:25:26.388Z"
}
备注
- 更多返回错误代码请看首页的错误代码描述