添加
[TOC]
简要描述
- 用户注册接口
请求URL
http://localhost:3030/outgoingmanagement
请求方式
- POST
参数
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
warehousereceipt | 是 | string | 出库单号 |
outboundtype | 是 | string | 出库类型 |
associatedorder | 否 | string | 关联单号 |
outboundamount | 否 | INTEGER | 出库金额 |
deliverystatus | 否 | string | 出库状态 |
creationtime | 否 | DATE | 创建时间 |
deliverytime | 否 | DATE | 出库时间 |
inventorynumber | 否 | string | 外键-库房表 |
返回示例
{
"id": 2,
"warehousereceipt": "sq1235",
"outboundtype": "用户订单",
"associatedorder": "as1235",
"outboundamount": "0",
"deliverystatus": "已出库",
"creationtime": "2023-05-22T16:00:00.000Z",
"deliverytime": "2023-05-22T16:00:00.000Z",
"inventorynumber": "1",
"updatedAt": "2023-05-24T02:53:01.263Z",
"createdAt": "2023-05-24T02:53:01.263Z"
}
备注
- 更多返回错误代码请看首页的错误代码描述