添加
[TOC]
简要描述
- 用户注册接口
请求URL
http://localhost:3030/financialstatement
请求方式
- POST
参数
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
ordernumber | 是 | string | 订单号 |
goodstotal | 是 | INTEGER | 商品总价 |
deliverycharge | 否 | INTEGER | 配送费 |
actualamount | 否 | INTEGER | 实付金额 |
orderstatus | 否 | string | 订单状态 |
orderingplatform | 否 | string | 下单平台 |
ordertime | 否 | DATE | 下单时间 |
platformstore | 否 | string | 平台店铺 |
deliverytime | 否 | DATE | 配送时间 |
consignee | 否 | string | 收货人 |
consigneephone | 否 | string | 收货人电话 |
orderno | 否 | string | 外键-订单表 |
commodityname | 否 | string | 外键-商品表 |
ordernumbers | 否 | string | 外键-配送表 |
namespeople | 否 | string | 外键-用户表 |
返回示例
{
"id": 2,
"ordernumber": "asd5465313",
"goodstotal": "30",
"deliverycharge": "4",
"actualamount": "30",
"orderstatus": "已送达",
"orderingplatform": "微信",
"ordertime": "2023-05-22T16:00:00.000Z",
"platformstore": "溜肉",
"deliverytime": "2023-05-22T16:00:00.000Z",
"consignee": "圣剑",
"consigneephone": "1236544",
"orderno": "1",
"commodityname": "1",
"ordernumbers": "1",
"namespeople": "1",
"updatedAt": "2023-05-24T03:17:54.244Z",
"createdAt": "2023-05-24T03:17:54.244Z"
}
备注
- 更多返回错误代码请看首页的错误代码描述