首先查询购物车 查询以后添加
List result = queryGouWuCheBean.getResult();
ArrayList list =new ArrayList<>();
for (int i =0; i < result.size(); i++) {
AddBean addBean =new AddBean(result.get(i).getCommodityId()+"",1);
list.add( addBean );
}
list.add(new AddBean(commodityId,1 ) );
Gson gson =new Gson();
String data = gson.toJson( list );
//请求同步购物车接口
gouPresenter.ShowData(userId,sessionId,data);