將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 =
相關文章
相關標籤/搜索