zl程序教程

您现在的位置是:首页 >  其他

当前栏目

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

2023-09-27 14:25:05 时间

例如:

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

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

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

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

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