Commit bf8c301f by 宋珺琪

修改算例返回格式

parent 2ac9cf8b
package com.founder.commonutils.model.newPublicEntity.hnkshEntity;
import lombok.Data;
import java.io.Serializable;
@Data
public class Linkspropertice implements Serializable {
private String time;
private String source;
private String target;
private String label;
}
...@@ -14,5 +14,5 @@ public class kshlinks implements Serializable { ...@@ -14,5 +14,5 @@ public class kshlinks implements Serializable {
private String label; private String label;
private kshlinks properties; private Linkspropertice properties;
} }
...@@ -77,20 +77,21 @@ public class KshSlServiceController { ...@@ -77,20 +77,21 @@ public class KshSlServiceController {
nodes.add(mergeDTOgjd); nodes.add(mergeDTOgjd);
sumup.add(asjbh); sumup.add(asjbh);
//links //links
kshlinks ks= new kshlinks();
kshlinks kshlink = new kshlinks(); kshlinks kshlink = new kshlinks();
kshlink.setSource(objectValue); kshlink.setSource(objectValue);
kshlink.setTarget(asjbh); kshlink.setTarget(asjbh);
kshlink.setLabel("人案"); kshlink.setLabel("人案");
ks.setSource(objectValue); Linkspropertice linkspropertice = new Linkspropertice();
ks.setTarget(asjbh); linkspropertice.setTime("2022-09-16 09:59:11");
ks.setLabel("人案"); linkspropertice.setSource(objectValue);
ks.setProperties(kshlink); linkspropertice.setTarget(asjbh);
re.add(ks); linkspropertice.setLabel("人案");
kshlink.setProperties(linkspropertice);
re.add(kshlink);
} }
//组装 nodes //组装 nodes
HnTbStRygxDTO mergeDTO = new HnTbStRygxDTO(); /* HnTbStRygxDTO mergeDTO = new HnTbStRygxDTO();
mergeDTO.setId(objectValue); mergeDTO.setId(objectValue);
mergeDTO.setLabel("证件号码:"+objectValue); mergeDTO.setLabel("证件号码:"+objectValue);
Kshpropertice kshpropertice = new Kshpropertice(); Kshpropertice kshpropertice = new Kshpropertice();
...@@ -99,10 +100,10 @@ public class KshSlServiceController { ...@@ -99,10 +100,10 @@ public class KshSlServiceController {
kshpropertice.setImgType("idcard"); kshpropertice.setImgType("idcard");
kshpropertice.setBoderColor(null); kshpropertice.setBoderColor(null);
mergeDTO.setProperties(kshpropertice); mergeDTO.setProperties(kshpropertice);
nodes.add(mergeDTO); nodes.add(mergeDTO);*/
kshdata.setNodes(nodes); kshdata.setNodes(nodes);
kshdata.setLinks(re); kshdata.setLinks(re);
sumup.add(objectValue); // sumup.add(objectValue);
dataSumup.setList(sumup); dataSumup.setList(sumup);
dataSumup.setName("人案关联"); dataSumup.setName("人案关联");
result.setKshData(kshdata); result.setKshData(kshdata);
...@@ -122,7 +123,6 @@ public class KshSlServiceController { ...@@ -122,7 +123,6 @@ public class KshSlServiceController {
List<kshlinks> re =new ArrayList<>(); List<kshlinks> re =new ArrayList<>();
// 案查人 遍历 这个案件底下有多少人 // 案查人 遍历 这个案件底下有多少人
for (TbXwZbfzxyr sfz : AfindR) { for (TbXwZbfzxyr sfz : AfindR) {
kshlinks ks= new kshlinks();
String zjhm = sfz.getZhfzxyrCyzjZjhm(); String zjhm = sfz.getZhfzxyrCyzjZjhm();
// nodes // nodes
HnTbStRygxDTO mergeDTOgjd = new HnTbStRygxDTO(); HnTbStRygxDTO mergeDTOgjd = new HnTbStRygxDTO();
...@@ -141,15 +141,17 @@ public class KshSlServiceController { ...@@ -141,15 +141,17 @@ public class KshSlServiceController {
kshlink.setSource(objectValue); kshlink.setSource(objectValue);
kshlink.setTarget(zjhm); kshlink.setTarget(zjhm);
kshlink.setLabel("人案"); kshlink.setLabel("人案");
ks.setSource(objectValue); Linkspropertice linkspropertice = new Linkspropertice();
ks.setTarget(zjhm); linkspropertice.setTime("2022-09-16 09:59:11");
ks.setLabel("人案"); linkspropertice.setSource(objectValue);
ks.setProperties(kshlink); linkspropertice.setTarget(zjhm);
re.add(ks); linkspropertice.setLabel("人案");
kshlink.setProperties(linkspropertice);
re.add(kshlink);
} }
//组装 nodes //组装 nodes
HnTbStRygxDTO mergeDTO = new HnTbStRygxDTO(); /* HnTbStRygxDTO mergeDTO = new HnTbStRygxDTO();
mergeDTO.setId(objectValue); mergeDTO.setId(objectValue);
mergeDTO.setLabel("案事件编号:"+objectValue); mergeDTO.setLabel("案事件编号:"+objectValue);
Kshpropertice kshpropertice = new Kshpropertice(); Kshpropertice kshpropertice = new Kshpropertice();
...@@ -158,10 +160,10 @@ public class KshSlServiceController { ...@@ -158,10 +160,10 @@ public class KshSlServiceController {
kshpropertice.setImgType("aj"); kshpropertice.setImgType("aj");
kshpropertice.setBoderColor(null); kshpropertice.setBoderColor(null);
mergeDTO.setProperties(kshpropertice); mergeDTO.setProperties(kshpropertice);
nodes.add(mergeDTO); nodes.add(mergeDTO);*/
kshdata.setNodes(nodes); kshdata.setNodes(nodes);
kshdata.setLinks(re); kshdata.setLinks(re);
sumup.add(objectValue); // sumup.add(objectValue);
dataSumup.setList(sumup); dataSumup.setList(sumup);
dataSumup.setName("人案关联"); dataSumup.setName("人案关联");
result1.setKshData(kshdata); result1.setKshData(kshdata);
...@@ -181,16 +183,6 @@ public class KshSlServiceController { ...@@ -181,16 +183,6 @@ public class KshSlServiceController {
QueryWrapper<TbXwZbfzxyr> wrapper = new QueryWrapper<>(); QueryWrapper<TbXwZbfzxyr> wrapper = new QueryWrapper<>();
wrapper.select("asjbh").eq("zhfzxyr_cyzj_zjhm",objectValue); wrapper.select("asjbh").eq("zhfzxyr_cyzj_zjhm",objectValue);
List<TbXwZbfzxyr> sfzfindasj = zbFzxyrDataMapper.selectList(wrapper); List<TbXwZbfzxyr> sfzfindasj = zbFzxyrDataMapper.selectList(wrapper);
//遍历asjbh 去根据asjbh去查人
/* QueryWrapper<TbXwZbfzxyr> wrapper1 = new QueryWrapper<>();
wrapper1.and(wra -> {
for(TbXwZbfzxyr tbXwZbfzxyr : sfzfindasj){
wra.or().select("zhfzxyr_cyzj_zjhm")
.eq("asjbh",tbXwZbfzxyr.getAsjbh());
}
return wra;
});
List<TbXwZbfzxyr> RfindA = zbFzxyrDataMapper.selectList(wrapper1);*/
Hnkshresult result = new Hnkshresult(); Hnkshresult result = new Hnkshresult();
kshdata kshdata = new kshdata(); kshdata kshdata = new kshdata();
dataSumup dataSumup = new dataSumup(); dataSumup dataSumup = new dataSumup();
...@@ -204,34 +196,38 @@ public class KshSlServiceController { ...@@ -204,34 +196,38 @@ public class KshSlServiceController {
List<TbXwZbfzxyr> AfindR = zbFzxyrDataMapper.selectList(wrapper1); List<TbXwZbfzxyr> AfindR = zbFzxyrDataMapper.selectList(wrapper1);
// 案查人 遍历 这个案件底下有多少人 // 案查人 遍历 这个案件底下有多少人
for (TbXwZbfzxyr sfz : AfindR) { for (TbXwZbfzxyr sfz : AfindR) {
kshlinks ks= new kshlinks();
String zjhm = sfz.getZhfzxyrCyzjZjhm(); String zjhm = sfz.getZhfzxyrCyzjZjhm();
// nodes if (!zjhm.equals(objectValue)){
HnTbStRygxDTO mergeDTOgjd = new HnTbStRygxDTO(); // nodes
mergeDTOgjd.setId(zjhm); HnTbStRygxDTO mergeDTOgjd = new HnTbStRygxDTO();
mergeDTOgjd.setLabel(zjhm); mergeDTOgjd.setId(zjhm);
Kshpropertice kshpropertice = new Kshpropertice(); mergeDTOgjd.setLabel(zjhm);
kshpropertice.setId(zjhm); Kshpropertice kshpropertice = new Kshpropertice();
kshpropertice.setLabel(zjhm); kshpropertice.setId(zjhm);
kshpropertice.setImgType("idcard"); kshpropertice.setLabel(zjhm);
kshpropertice.setBoderColor(null); kshpropertice.setImgType("idcard");
mergeDTOgjd.setProperties(kshpropertice); kshpropertice.setBoderColor(null);
nodes.add(mergeDTOgjd); mergeDTOgjd.setProperties(kshpropertice);
sumup.add(zjhm); nodes.add(mergeDTOgjd);
//links sumup.add(zjhm);
kshlinks kshlink = new kshlinks(); //links
kshlink.setSource(asjbh); kshlinks kshlink = new kshlinks();
kshlink.setTarget(zjhm); kshlink.setSource(asjbh);
kshlink.setLabel("人案人"); kshlink.setTarget(zjhm);
ks.setSource(asjbh); kshlink.setLabel("人案人");
ks.setTarget(zjhm); Linkspropertice linkspropertice = new Linkspropertice();
ks.setLabel("人案人"); linkspropertice.setTime("2022-09-16 09:59:11");
ks.setProperties(kshlink); linkspropertice.setSource(asjbh);
re.add(ks); linkspropertice.setTarget(zjhm);
linkspropertice.setLabel("人案人");
kshlink.setProperties(linkspropertice);
re.add(kshlink);
}
} }
//组装 nodes //组装 nodes
HnTbStRygxDTO mergeDTO = new HnTbStRygxDTO(); /* HnTbStRygxDTO mergeDTO = new HnTbStRygxDTO();
mergeDTO.setId(asjbh); mergeDTO.setId(asjbh);
mergeDTO.setLabel("案事件编号:"+asjbh); mergeDTO.setLabel("案事件编号:"+asjbh);
Kshpropertice kshpropertice = new Kshpropertice(); Kshpropertice kshpropertice = new Kshpropertice();
...@@ -240,10 +236,10 @@ public class KshSlServiceController { ...@@ -240,10 +236,10 @@ public class KshSlServiceController {
kshpropertice.setImgType("aj"); kshpropertice.setImgType("aj");
kshpropertice.setBoderColor(null); kshpropertice.setBoderColor(null);
mergeDTO.setProperties(kshpropertice); mergeDTO.setProperties(kshpropertice);
nodes.add(mergeDTO); nodes.add(mergeDTO);*/
kshdata.setNodes(nodes); kshdata.setNodes(nodes);
kshdata.setLinks(re); kshdata.setLinks(re);
sumup.add(asjbh); // sumup.add(asjbh);
dataSumup.setList(sumup); dataSumup.setList(sumup);
dataSumup.setName("同案关联"); dataSumup.setName("同案关联");
result.setKshData(kshdata); result.setKshData(kshdata);
......
...@@ -407,11 +407,13 @@ public class HnTbStRygxController { ...@@ -407,11 +407,13 @@ public class HnTbStRygxController {
kshlink.setSource(name); kshlink.setSource(name);
kshlink.setTarget(sfzh); kshlink.setTarget(sfzh);
kshlink.setLabel(value); kshlink.setLabel(value);
ks.setSource(name); Linkspropertice linkspropertice = new Linkspropertice();
ks.setTarget(sfzh); linkspropertice.setTime("2022-09-16 09:59:11");
ks.setLabel(value); linkspropertice.setSource(name);
ks.setProperties(kshlink); linkspropertice.setTarget(sfzh);
re.add(ks); linkspropertice.setLabel(value);
kshlink.setProperties(linkspropertice);
re.add(kshlink);
} }
} }
//组装 nodes //组装 nodes
......
...@@ -2,15 +2,6 @@ ...@@ -2,15 +2,6 @@
"kshdata": { "kshdata": {
"nodes": [ "nodes": [
{ {
"id": "430123196510265891",
"label": "证件号码:430123196510265891",
"properties": {
"id": "430123196510265891",
"label": "证件号码:430123196510265891",
"imgType": "idcard"
}
},
{
"id": "蒙AKH824", "id": "蒙AKH824",
"label": "蒙AKH824", "label": "蒙AKH824",
"properties": { "properties": {
...@@ -26,6 +17,7 @@ ...@@ -26,6 +17,7 @@
"target": "蒙AKH824", "target": "蒙AKH824",
"label": "车主", "label": "车主",
"properties": { "properties": {
"time": "2022-09-16 09:59:11",
"label": "车主", "label": "车主",
"source": "430123196510265891", "source": "430123196510265891",
"target": "蒙AKH824" "target": "蒙AKH824"
...@@ -36,7 +28,6 @@ ...@@ -36,7 +28,6 @@
"dataSumup": { "dataSumup": {
"name": "车主关联", "name": "车主关联",
"list": [ "list": [
"430123196510265891",
"蒙AKH824" "蒙AKH824"
] ]
} }
......
...@@ -2,15 +2,6 @@ ...@@ -2,15 +2,6 @@
"kshdata": { "kshdata": {
"nodes": [ "nodes": [
{ {
"id": "蒙AKH824",
"label": "车牌号:蒙AKH824",
"properties": {
"id": "蒙AKH824",
"label": "车牌号:蒙AKH824",
"imgType": "cph"
}
},
{
"id": "430123196510265891", "id": "430123196510265891",
"label": "证件号码:430123196510265891", "label": "证件号码:430123196510265891",
"properties": { "properties": {
...@@ -26,6 +17,7 @@ ...@@ -26,6 +17,7 @@
"target": "430123196510265891", "target": "430123196510265891",
"label": "车主", "label": "车主",
"properties": { "properties": {
"time": "2022-09-16 09:59:11",
"label": "车主", "label": "车主",
"source": "蒙AKH824", "source": "蒙AKH824",
"target": "430123196510265891" "target": "430123196510265891"
...@@ -36,8 +28,7 @@ ...@@ -36,8 +28,7 @@
"dataSumup": { "dataSumup": {
"name": "车主关联", "name": "车主关联",
"list": [ "list": [
"430123196510265891", "430123196510265891"
"蒙AKH824"
] ]
} }
} }
\ No newline at end of file
...@@ -2,15 +2,6 @@ ...@@ -2,15 +2,6 @@
"kshdata": { "kshdata": {
"nodes": [ "nodes": [
{ {
"id": "18545251333",
"label": "手机号:18545251333",
"properties": {
"id": "430123196510265891",
"label": "证件号码:430123196510265891",
"imgType": "sjh"
}
},
{
"id": "430123196510265891", "id": "430123196510265891",
"label": "430123196510265891", "label": "430123196510265891",
"properties": { "properties": {
...@@ -26,6 +17,7 @@ ...@@ -26,6 +17,7 @@
"target": "430123196510265891", "target": "430123196510265891",
"label": "机主", "label": "机主",
"properties": { "properties": {
"time": "2022-09-16 09:59:11",
"label": "机主", "label": "机主",
"source": "18545251333", "source": "18545251333",
"target": "430123196510265891" "target": "430123196510265891"
...@@ -36,8 +28,7 @@ ...@@ -36,8 +28,7 @@
"dataSumup": { "dataSumup": {
"name": "机主关联", "name": "机主关联",
"list": [ "list": [
"430123196510265891", "430123196510265891"
"18545251333"
] ]
} }
} }
\ No newline at end of file
...@@ -2,15 +2,6 @@ ...@@ -2,15 +2,6 @@
"kshdata": { "kshdata": {
"nodes": [ "nodes": [
{ {
"id": "430123196510265891",
"label": "证件号码:430123196510265891",
"properties": {
"id": "430123196510265891",
"label": "证件号码:430123196510265891",
"imgType": "idcard"
}
},
{
"id": "18545251333", "id": "18545251333",
"label": "18545251333", "label": "18545251333",
"properties": { "properties": {
...@@ -26,6 +17,7 @@ ...@@ -26,6 +17,7 @@
"target": "18545251333", "target": "18545251333",
"label": "机主", "label": "机主",
"properties": { "properties": {
"time": "2022-09-16 09:59:11",
"label": "机主", "label": "机主",
"source": "430123196510265891", "source": "430123196510265891",
"target": "18545251333" "target": "18545251333"
...@@ -36,7 +28,6 @@ ...@@ -36,7 +28,6 @@
"dataSumup": { "dataSumup": {
"name": "机主关联", "name": "机主关联",
"list": [ "list": [
"430123196510265891",
"18545251333" "18545251333"
] ]
} }
......
...@@ -2,21 +2,12 @@ ...@@ -2,21 +2,12 @@
"kshdata": { "kshdata": {
"nodes": [ "nodes": [
{ {
"id": "430123196510265891",
"label": "证件号码:430123196510265891",
"properties": {
"id": "430123196510265891",
"label": "证件号码:430123196510265891",
"imgType": "idcard"
}
},
{
"id": "BGSC001", "id": "BGSC001",
"label": "BGSC001", "label": "BGSC001",
"properties": { "properties": {
"id": "BGSC001", "id": "BGSC001",
"label": "BGSC001", "label": "BGSC001",
"imgType": "other" "imgType": "imsi"
} }
}, },
{ {
...@@ -25,7 +16,7 @@ ...@@ -25,7 +16,7 @@
"properties": { "properties": {
"id": "KFS001", "id": "KFS001",
"label": "KFS001", "label": "KFS001",
"imgType": "other" "imgType": "imei"
} }
}, },
{ {
...@@ -53,6 +44,7 @@ ...@@ -53,6 +44,7 @@
"target": "BGSC001", "target": "BGSC001",
"label": "IMSI", "label": "IMSI",
"properties": { "properties": {
"time": "2022-09-16 09:59:11",
"label": "IMSI", "label": "IMSI",
"source": "430123196510265891", "source": "430123196510265891",
"target": "BGSC001" "target": "BGSC001"
...@@ -63,6 +55,7 @@ ...@@ -63,6 +55,7 @@
"target": "KFS001", "target": "KFS001",
"label": "IMEI", "label": "IMEI",
"properties": { "properties": {
"time": "2022-09-16 09:59:11",
"label": "IMEI", "label": "IMEI",
"source": "430123196510265891", "source": "430123196510265891",
"target": "KFS001" "target": "KFS001"
...@@ -73,6 +66,7 @@ ...@@ -73,6 +66,7 @@
"target": "18545251333", "target": "18545251333",
"label": "手机号", "label": "手机号",
"properties": { "properties": {
"time": "2022-09-16 09:59:11",
"label": "手机号", "label": "手机号",
"source": "430123196510265891", "source": "430123196510265891",
"target": "18545251333" "target": "18545251333"
...@@ -83,6 +77,7 @@ ...@@ -83,6 +77,7 @@
"target": "长沙市第一医院", "target": "长沙市第一医院",
"label": "MAC", "label": "MAC",
"properties": { "properties": {
"time": "2022-09-16 09:59:11",
"label": "MAC", "label": "MAC",
"source": "430123196510265891", "source": "430123196510265891",
"target": "长沙市第一医院" "target": "长沙市第一医院"
...@@ -93,7 +88,6 @@ ...@@ -93,7 +88,6 @@
"dataSumup": { "dataSumup": {
"name": "四码关联", "name": "四码关联",
"list": [ "list": [
"430123196510265891",
"BGSC001", "BGSC001",
"KFS001", "KFS001",
"18545251333", "18545251333",
......
...@@ -2,21 +2,12 @@ ...@@ -2,21 +2,12 @@
"kshdata": { "kshdata": {
"nodes": [ "nodes": [
{ {
"id": "18545251333",
"label": "手机号:18545251333",
"properties": {
"id": "18545251333",
"label": "手机号:18545251333",
"imgType": "sjk"
}
},
{
"id": "BGSC001", "id": "BGSC001",
"label": "BGSC001", "label": "BGSC001",
"properties": { "properties": {
"id": "BGSC001", "id": "BGSC001",
"label": "BGSC001", "label": "BGSC001",
"imgType": "other" "imgType": "imsi"
} }
}, },
{ {
...@@ -25,7 +16,7 @@ ...@@ -25,7 +16,7 @@
"properties": { "properties": {
"id": "KFS001", "id": "KFS001",
"label": "KFS001", "label": "KFS001",
"imgType": "other" "imgType": "imei"
} }
}, },
{ {
...@@ -44,6 +35,7 @@ ...@@ -44,6 +35,7 @@
"target": "BGSC001", "target": "BGSC001",
"label": "IMSI", "label": "IMSI",
"properties": { "properties": {
"time": "2022-09-16 09:59:11",
"label": "IMSI", "label": "IMSI",
"source": "18545251333", "source": "18545251333",
"target": "BGSC001" "target": "BGSC001"
...@@ -54,6 +46,7 @@ ...@@ -54,6 +46,7 @@
"target": "KFS001", "target": "KFS001",
"label": "IMEI", "label": "IMEI",
"properties": { "properties": {
"time": "2022-09-16 09:59:11",
"label": "IMEI", "label": "IMEI",
"source": "18545251333", "source": "18545251333",
"target": "KFS001" "target": "KFS001"
...@@ -64,6 +57,7 @@ ...@@ -64,6 +57,7 @@
"target": "长沙市第一医院", "target": "长沙市第一医院",
"label": "MAC", "label": "MAC",
"properties": { "properties": {
"time": "2022-09-16 09:59:11",
"label": "MAC", "label": "MAC",
"source": "18545251333", "source": "18545251333",
"target": "长沙市第一医院" "target": "长沙市第一医院"
...@@ -76,7 +70,6 @@ ...@@ -76,7 +70,6 @@
"list": [ "list": [
"BGSC001", "BGSC001",
"KFS001", "KFS001",
"18545251333",
"长沙市第一医院" "长沙市第一医院"
] ]
} }
......
...@@ -2,37 +2,28 @@ ...@@ -2,37 +2,28 @@
"kshdata": { "kshdata": {
"nodes": [ "nodes": [
{ {
"id": "430123196510265891", "id": "430123196510265892",
"label": "证件号码:430123196510265891",
"properties": {
"id": "430123196510265891",
"label": "证件号码:430123196510265891",
"imgType": "idcard"
}
},
{
"id": "证件号码:430123196510265892",
"label": "证件号码:430123196510265892", "label": "证件号码:430123196510265892",
"properties": { "properties": {
"id": "证件号码:430123196510265892", "id": "430123196510265892",
"label": "证件号码:430123196510265892", "label": "证件号码:430123196510265892",
"imgType": "idcard" "imgType": "idcard"
} }
}, },
{ {
"id": "证件号码:430123196510265893", "id": "430123196510265893",
"label": "证件号码:430123196510265893", "label": "证件号码:430123196510265893",
"properties": { "properties": {
"id": "证件号码:430123196510265893", "id": "430123196510265893",
"label": "证件号码:430123196510265893", "label": "证件号码:430123196510265893",
"imgType": "idcard" "imgType": "idcard"
} }
}, },
{ {
"id": "证件号码:430123196510265894", "id": "430123196510265894",
"label": "证件号码:430123196510265894", "label": "证件号码:430123196510265894",
"properties": { "properties": {
"id": "证件号码:430123196510265894", "id": "430123196510265894",
"label": "证件号码:430123196510265894", "label": "证件号码:430123196510265894",
"imgType": "idcard" "imgType": "idcard"
} }
...@@ -44,6 +35,7 @@ ...@@ -44,6 +35,7 @@
"target": "证件号码:430123196510265892", "target": "证件号码:430123196510265892",
"label": "配偶关系", "label": "配偶关系",
"properties": { "properties": {
"time": "2022-09-16 09:59:11",
"label": "配偶关系", "label": "配偶关系",
"source": "430123196510265891", "source": "430123196510265891",
"target": "证件号码:430123196510265892" "target": "证件号码:430123196510265892"
...@@ -54,6 +46,7 @@ ...@@ -54,6 +46,7 @@
"target": "证件号码:430123196510265893", "target": "证件号码:430123196510265893",
"label": "子女关系", "label": "子女关系",
"properties": { "properties": {
"time": "2022-09-16 09:59:11",
"label": "子女关系", "label": "子女关系",
"source": "430123196510265891", "source": "430123196510265891",
"target": "证件号码:430123196510265893" "target": "证件号码:430123196510265893"
...@@ -64,6 +57,7 @@ ...@@ -64,6 +57,7 @@
"target": "证件号码:430123196510265894", "target": "证件号码:430123196510265894",
"label": "父母关系", "label": "父母关系",
"properties": { "properties": {
"time": "2022-09-16 09:59:11",
"label": "父母关系", "label": "父母关系",
"source": "430123196510265891", "source": "430123196510265891",
"target": "证件号码:430123196510265894" "target": "证件号码:430123196510265894"
...@@ -74,12 +68,9 @@ ...@@ -74,12 +68,9 @@
"dataSumup": { "dataSumup": {
"name": "同户关联", "name": "同户关联",
"list": [ "list": [
"430123196510265891", "430123196510265892",
"15754879533", "430123196510265893",
"蒙AKH824", "430123196510265894"
"6216625552447663148522",
"A4690035100002025050074",
"A4301025100002022020012"
] ]
} }
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment