|
|
@@ -160,7 +160,11 @@ public class MatterManage { |
|
|
|
} |
|
|
|
|
|
|
|
return matters.stream() |
|
|
|
.map(m -> BeanUtil.copyProperties(m,MattersVO.class)) |
|
|
|
.map(m -> { |
|
|
|
MattersVO mattersVO = BeanUtil.copyProperties(m, MattersVO.class); |
|
|
|
mattersVO.setMatterName(m.getItemName()); |
|
|
|
return mattersVO; |
|
|
|
}) |
|
|
|
.collect(Collectors.toList()); |
|
|
|
} |
|
|
|
|
|
|
|