202504-Wms-MengYang/202504-Wms-MengYang-box/wms_serve_mengyang/api-tests/MyWmsController.http

33 lines
606 B
Plaintext
Raw Normal View History

2025-07-25 12:35:54 +08:00
### MyWMS接口测试
### 基础配置
@baseUrl = http://localhost:12325
2025-07-25 12:35:54 +08:00
### 1. 入库订单接口
POST {{baseUrl}}/mywms/orderIn
Content-Type: application/json
{
"taskId": "testId1",
"vehicleNo": "1001"
2025-07-25 12:35:54 +08:00
}
### 2. 出库订单接口
POST {{baseUrl}}/mywms/orderOut
Content-Type: application/json
{
"taskId": "testId1",
2025-09-21 12:52:56 +08:00
"vehicleNo": "1002"
2025-07-25 12:35:54 +08:00
}
### 3. 发送任务结果 - 任务完成
POST {{baseUrl}}/wms/task/sendTaskResult
2025-07-25 12:35:54 +08:00
Content-Type: application/json
{
"taskId": "1758635063394010001",
"taskStatus": 100,
"vehicleNo": "1009",
"destination": "CR",
"message": "任务执行成功"
}