java 对象copy 单个copy / list copy
//单个对象复制,使用org.springframework.beans.BeanUtils BeanUtils.copyProperties(oldVO, newVO);
//list List<NewListVO> newList = JSON.parseArray(JSON.toJSONString(list), NewListVO.class);
//单个对象复制,使用org.springframework.beans.BeanUtils BeanUtils.copyProperties(oldVO, newVO);
//list List<NewListVO> newList = JSON.parseArray(JSON.toJSONString(list), NewListVO.class);