将DO转VO工具类

import org.springframework.beans.BeanUtils; /** * List<DO>转List<VO> */ public static <T> List<T> copyList(List<?> doList, Class<T> voClass) { List<T> voList = new ArrayList<>(); try { T voObj =
相关文章
相关标签/搜索