获取未完成的需求单列表
请求
- 功能:获取未完成的需求单列表
- 方法:
POST
- 接口说明:
/api/operator/getUnFinishedDemandList
- 请求示例URL
html
POST http://localhost:8080/api/operator/getUnFinishedDemandList
1
请求参数
无
请求示例
获取未完成的需求单列表
html
POST http://localhost:8080/api/operator/getUnFinishedDemandList
1
响应
Name | Type | Description |
---|---|---|
code | int | API 错误码,详情见 API 错误码 |
msg | String | API 错误码信息 |
data | Object | 返回的数据对象 |
id | String | 需求单id |
defLabel | String | 需求单名称 |
description | String | 需求单描述 |
createdOn | String | 需求单创建时间 |
响应示例
请求成功时,响应正文格式如下:
json
{
"code": 200,
"msg": "Success",
"data": [
{
"id": "402889f782630c0f018263173dcd000d",
"defLabel": "materialCall",
"description": "需要物料:SR10-B6",
"createdOn": "2022-08-03 17:44:03"
}
]
}
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
最近更新 2022/11/28
有用
没用