Gson gson=new Gson();
List<RepairtArtificerBean> repairtArtificerBeanList = gson.fromJson(result, new TypeToken<List<RepairtArtificerBean>>() {}.getType());
if(null != repairtArtificerBeanList && repairtArtificerBeanList.size() > 0){
for(int i =0;i<repairtArtificerBeanList.size();i++){
repairBeanList.add(repairtArtificerBeanList.get(i));
}
}
492

被折叠的 条评论
为什么被折叠?



