实体模型集合对象转换为VO对象集合

例如:

  数据库中查出来的数据为 List<RptDayMonthTarget>

List<RptDayMonthTarget> list = targetService.selectMonthTarget();

  此时要转换为  List<RptDayMonthTargetVO>给前端展示

  思路就是先使转换为JSON串,再转换为集合对象

List<RptDayMonthTargetVO> voList = JSON.parseArray(JSON.toJSONString(dbList), RptDayMonthTargetVO.class);

猜你喜欢

转载自www.cnblogs.com/gabriel-y/p/12057015.html