Interface ChineseOrderService
-
- All Known Implementing Classes:
DefaultChineseOrderService
public interface ChineseOrderServiceThe service of ChineseOrder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voidcancelOrder(java.lang.String code)Deprecated, for removal: This API element is subject to removal in a future version.since 1905voidupdateOrderForRefund(OrderModel orderModel, boolean refundSucceed)Call back for refund service to update order status
-
-
-
Method Detail
-
cancelOrder
@Deprecated(since="1905", forRemoval=true) void cancelOrder(java.lang.String code)Deprecated, for removal: This API element is subject to removal in a future version.since 1905Cancel the order- Parameters:
code- The code of the order
-
updateOrderForRefund
void updateOrderForRefund(OrderModel orderModel, boolean refundSucceed)
Call back for refund service to update order status- Parameters:
orderModel- The order model to be updatedrefundSucceed- True if the order has been refunded successfully and false otherwise
-
-