JSONObject转对象的方法

Map returnMap =new HashMap();

CustomerModel customer =JSON.parseObject(JSON.toJSONString(returnMap.get("customer")),CustomerModel.class);

ListcustomerList =JSON.parseArray(JSON.toJSONString(returnMap.get("customerList")),CustomerModel.class);

你可能感兴趣的:(JSONObject转对象的方法)