Map<String,Object> map = new HashMap<>();
map.put("name","段漂亮");
map.put("age","25");
FixedAssets fixedAssets = new FixedAssets();
BeanUtils.populate(fixedAssets,map);
System.out.println(JSON.toJSONString(fixedAssets));
运用BeanUtils.populate这个方法的前提是FixedAssets这个bean中有和map相同的key值才可以,可以看下这个方法的源码