- 🦊一分钟,了解 Apifox !
- 示例项目
- WMS
- 基础服务
- 物料转换
- 入库上架
新增入库上架执行单
POST
/PutOnShelves/addBill
请求参数
Body 参数application/json
accountingDate
string | null
记账日期
remark
string | null
备注
示例
{
"accountingDate": "string",
"remark": "string"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/PutOnShelves/addBill' \
--header 'Content-Type: application/json' \
--data-raw '{
"accountingDate": "string",
"remark": "string"
}'
返回响应
🟢200成功
application/json
Body
code
string | null
可选
message
string | null
响应描述信息
data
object (BillSaveRespDTO)
响应结果
billId
integer | null
单据ID
billNo
string | null
单据号
示例
{
"code": "",
"message": "",
"data": {
"billId": 0,
"billNo": ""
}
}