use of com.stardata.starshop2.ordercontext.command.domain.order.WxPrepayOrder in project starshop by beautautumn.
the class OrderAppService method prepay.
public PrepayResponse prepay(Long orderIdLong) {
LongIdentity orderId = LongIdentity.from(orderIdLong);
WxPrepayOrder prepay = managingService.prepayOrder(orderId);
return PrepayResponse.from(prepay);
}
Aggregations