POST api/MallOrder/UpdateOrderStatus

后台 - 更新订单状态

Request Information

URI Parameters

None.

Body Parameters

OrderAdminUpdateStatusDto
NameDescriptionTypeAdditional information
OrderId

订单标识

integer

None.

OrderStatus

订单状态

MallOrderStatusType

None.

CheckGShop

是否检查商家资质

boolean

None.

GShopId

商家标识

integer

None.

RefundType

退款方式

OrderRefundType

None.

RefundAmount

退款金额(分),小于等于0即认为全部退款

integer

None.

RefundAmountYuan

退款金额(元)

decimal number

None.

RefundCreditAmount

退款积分,小于等于0即认为全部退款

integer

None.

Request Formats

application/json

Sample:

Sample not available.

text/json

Sample:

Sample not available.

application/xml, text/xml

Sample:
<OrderAdminUpdateStatusDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mh.Mall.Service.Dto.Order.Admin">
  <CheckGShop>true</CheckGShop>
  <GShopId>3</GShopId>
  <OrderId>1</OrderId>
  <OrderStatus>All</OrderStatus>
  <RefundAmount>509</RefundAmount>
  <RefundAmountYuan>5.09</RefundAmountYuan>
  <RefundCreditAmount>6</RefundCreditAmount>
  <RefundType>ToOrigin</RefundType>
</OrderAdminUpdateStatusDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

后台 - 更新订单状态

Object

None.

Response Formats

application/json

Sample:

Sample not available.

text/json

Sample:

Sample not available.

application/xml, text/xml

Sample:
<z:anyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />