...
|
...
|
@@ -49,11 +49,15 @@ public class ShoppingController { |
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
* 我的出售记录数,买入记录数
|
|
|
* @return
|
|
|
*/
|
|
|
@RequestMapping(params = "method=ufo.order.summary")
|
|
|
public ApiResponse submit(@RequestParam(name = "uid") int uid,
|
|
|
@RequestParam(name = "client_type", required = false) String clientType){
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// OrderSubmitResponse paymentResponse = buyerOrderService.submit(request);
|
|
|
return new ApiResponse.ApiResponseBuilder().code(200).data(null).message("提交订单SUCCESS").build();
|
|
|
}
|
|
|
} |
...
|
...
|
|