json字符串转对应实体集合
List<VolunteerInfo> twoVolunteerInfo = JSON.parseArray(users, VolunteerInfo.class);
json字符串转对应实体
VolunteerInfo volunteerInfo = JSON.parseObject(users, VolunteerInfo.class);
json字符串转对应实体集合
List<VolunteerInfo> twoVolunteerInfo = JSON.parseArray(users, VolunteerInfo.class);
json字符串转对应实体
VolunteerInfo volunteerInfo = JSON.parseObject(users, VolunteerInfo.class);