POST Api/Service/Order/UpdateOrderPayment
更新订单收入/支付金额项
Request Information
URI Parameters
None.
Body Parameters
设置参数
SpeedPower.Utility.Models.Project.Orders.Service.UpdateOrderPaymentModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ID |
设置ID |
globally unique identifier |
None. |
| OrderId |
父级ID |
globally unique identifier |
None. |
| PaymentType |
收付款类型 |
SpeedPower.Utility.Models.Project.Orders.Enums.PaymentType |
None. |
| TotalPrice |
支付/收款金额 |
decimal number |
None. |
| TransactionId |
交易流水号 |
string |
String length: inclusive between 0 and 200 |
| Reconciled |
是否已对账 |
boolean |
None. |
| Remarks |
备注内容 |
string |
String length: inclusive between 0 and 500 |
Request Formats
application/json, text/json
Sample:
{
"ID": "3fd941e9-a39b-438b-8d44-514327497b7b",
"OrderId": "b0edc3b5-f9a8-408e-af5f-1e515b7eb36f",
"PaymentType": 0,
"TotalPrice": 3.1,
"TransactionId": "sample string 4",
"Reconciled": true,
"Remarks": "sample string 6"
}
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"
}