添加
[TOC]
简要描述
- 用户注册接口
请求URL
http://localhost:3030/warehousing
请求方式
- POST
参数
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
warehouseentry | 是 | string | 入库单号 |
incomingtype | 是 | string | 入库类型 |
commodityname | 否 | string | 商品名称 |
goodsnumber | 否 | string | 商品数量 |
warehousingamount | 否 | INTEGER | 入库金额 |
storagestatus | 否 | string | 入库状态 |
creationtime | 否 | DATE | 创建时间 |
warehousingtime | 否 | DATE | 入库时间 |
返回示例
{
"id": 2,
"warehouseentry": "sa1235",
"incomingtype": "存库",
"commodityname": "白菜",
"goodsnumber": "100",
"warehousingamount": "0",
"storagestatus": "正常",
"creationtime": "2023-05-22T16:00:00.000Z",
"warehousingtime": "2023-05-22T16:00:00.000Z",
"updatedAt": "2023-05-24T02:46:35.529Z",
"createdAt": "2023-05-24T02:46:35.529Z"
}
备注
- 更多返回错误代码请看首页的错误代码描述