|
@@ -7,6 +7,7 @@ import com.fasterxml.jackson.databind.node.ArrayNode;
|
|
|
import com.fasterxml.jackson.databind.node.ObjectNode;
|
|
|
import com.persagy.dmp.basic.utils.JsonNodeUtils;
|
|
|
|
|
|
+import java.io.IOException;
|
|
|
import java.util.Iterator;
|
|
|
import java.util.List;
|
|
|
import java.util.Set;
|
|
@@ -47,6 +48,11 @@ public class AdmEntityTransferUtil {
|
|
|
ArrayNode dataNode = JsonNodeUtils.toArrayNode(array, null, null);
|
|
|
return toAdmMultiEntity(dataNode, projection, clazz);
|
|
|
}
|
|
|
+
|
|
|
+ public static <T> List<T> toAdmMultiEntityExtra(List array, List<String> projection, Class<T> clazz) {
|
|
|
+ ArrayNode dataNode = JsonNodeUtils.toArrayNode(array, null, null);
|
|
|
+ return toAdmMultiEntityExtra(dataNode, projection, clazz);
|
|
|
+ }
|
|
|
|
|
|
/**
|
|
|
* 转换为数据中心对象
|
|
@@ -74,6 +80,25 @@ public class AdmEntityTransferUtil {
|
|
|
}
|
|
|
return null;*/
|
|
|
}
|
|
|
+
|
|
|
+ public static <T> List<T> toAdmMultiEntityExtra(ArrayNode array, List<String> projection, Class<T> clazz) {
|
|
|
+ if(ArrayUtil.isEmpty(array)) {
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+ // 转换属性名
|
|
|
+ for(int i = 0, j = array.size();i < j;i++) {
|
|
|
+ JsonNode node = array.get(i);
|
|
|
+ if(node != null && node.isObject()) {
|
|
|
+ resetAdmProperty((ObjectNode) node, projection);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ try {
|
|
|
+ return JSONEntityUtil.toEntity(array, clazz, "infos");
|
|
|
+ } catch (IOException e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+ return null;
|
|
|
+ }
|
|
|
|
|
|
/**
|
|
|
* 转换为数据中心对象
|