@Test
public void test(){
List<AdClaimsVO> list = adClaimsService.queryList();
List<Map> mapList = list.stream().map(adClaimsVO -> { //方法的参数
Map map = BeanUtil.beanToMap(adClaimsVO, false, true); // BeanUtil是一个工具类,beanToMap() 将JavaBean 转换为Map
map.remove("createTime");
map.remove("applyStatus");
return map;
}).collect(Collectors.toList());
}