!16 update jeecg-boot/jeecg-boot-base-common/src/main/java/org/jeecg/common/util/oConvertUtils.java.

Merge pull request !16 from 光速蜗牛/N/A
This commit is contained in:
JEECG开源社区 2020-08-28 11:13:53 +08:00 committed by Gitee
commit e825ebccd5
1 changed files with 1 additions and 1 deletions

View File

@ -593,7 +593,7 @@ public class oConvertUtils {
* @return
*/
public static<F,T> List<T> entityListToModelList(List<F> fromList, Class<T> tClass){
if(fromList.isEmpty() || fromList == null){
if(fromList == null || fromList.isEmpty()){
return null;
}
List<T> tList = new ArrayList<>();