POST Api/Service/Order/UpdateTodoItem
更新一个待办任务
Request Information
URI Parameters
None.
Body Parameters
设置参数
SpeedPower.Utility.Models.Project.Orders.Service.UpdateTodoItemModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Finished |
是否已完成处理 |
boolean |
None. |
| ID |
设置ID |
globally unique identifier |
None. |
| OrderId |
订单ID |
globally unique identifier |
None. |
| Distributor |
指派给谁 |
string |
Required String length: inclusive between 0 and 128 |
| Remarks |
备注 |
string |
String length: inclusive between 0 and 500 |
Request Formats
application/json, text/json
Sample:
{
"Finished": true,
"ID": "df605119-e0be-4701-84fc-21f1c8eb0b8c",
"OrderId": "8e7e8a4c-3eb6-4dee-82b5-1919c8b16b47",
"Distributor": "sample string 4",
"Remarks": "sample string 5"
}
Response Information
Resource Description
更新一个待办任务
SpeedPower.Utility.Models.Helper.ResultMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Succeed |
操作是否成功 |
boolean |
None. |
| Message |
操作消息 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Succeed": true,
"Message": "sample string 2"
}