Commit 6b4b6690 by yangyang

西藏多维、算力提交(西藏)

parent f226e1b0
......@@ -4,10 +4,9 @@ import java.sql.*;
public class JDBCUtil {
private static final String DRIVER = "com.mysql.cj.jdbc.Driver";//驱动类类名
private static final String DBURL = "jdbc:mysql://47.92.48.137:3900/skyp?useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai";//连接URL,javaweb为数据库名
private static final String DBURL = "jdbc:mysql://155.200.1.23:1106/xzxt?useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai";//连接URL,javaweb为数据库名
private static final String DBUSER = "root";//数据库用户
private static final String DBPASSWORD = "gkptCcYy123";//数据库密码
private static final String DBPASSWORD = "XzxtPwd#54";//数据库密码
public static Connection getConnection() {
Connection connection = null;
......
......@@ -37,15 +37,6 @@ public class DatabaseController {
/* int i = pageSize * (page - 1);
int j = pageSize;*/
List database = new ArrayList();
/* try
{
Class.forName("com.mysql.cj.jdbc.Driver"); //加载MYSQL JDBC驱动程序
System.out.println("Success loading Mysql Driver!");
}
catch (Exception e) {
e.printStackTrace();
return new MapRestResult().error("Error loading Mysql Driver!");
}*/
Connection connect = JDBCUtil.getConnection();
Statement stmt =null;
ResultSet rs = null;
......@@ -56,54 +47,43 @@ public class DatabaseController {
if (!StringUtil.isEmpty(type) && StringUtil.isEmpty(table) && type.equals("sk")){
//sk 列表
rs = stmt.executeQuery
("select TABLE_NAME '表名称',table_comment '表说明',CREATE_TIME '创建时间' from information_schema.tables where table_schema='skyp' and TABLE_NAME like 'sk%' ");
("select TABLE_NAME '表名称',table_comment '表说明',CREATE_TIME '创建时间',table_rows'数量' from information_schema.tables where table_schema='skyp' and TABLE_NAME like 'sk%' ORDER BY CREATE_TIME DESC");
}else if (!StringUtil.isEmpty(type) && StringUtil.isEmpty(table) && type.equals("ksh")){
//ksh 列表
rs = stmt.executeQuery
("select TABLE_NAME '表名称',table_comment '表说明',CREATE_TIME '创建时间' from information_schema.tables where table_schema='skyp' and TABLE_NAME like 'ksh%' ");
("select TABLE_NAME '表名称',table_comment '表说明',CREATE_TIME '创建时间' ,table_rows'数量' from information_schema.tables where table_schema='skyp' and TABLE_NAME like 'ksh%' ORDER BY CREATE_TIME DESC ");
}else if (!StringUtil.isEmpty(type) && StringUtil.isEmpty(table) && type.equals("xz")){
//xz 列表
rs = stmt.executeQuery
("select TABLE_NAME '表名称',table_comment '表说明',CREATE_TIME '创建时间' from information_schema.tables where table_schema='skyp' and (TABLE_NAME not like 'sk%' and TABLE_NAME not like 'ksh%') ");
("select TABLE_NAME '表名称',table_comment '表说明',CREATE_TIME '创建时间' ,table_rows'数量' from information_schema.tables where table_schema='skyp' and (TABLE_NAME not like 'sk%' and TABLE_NAME not like 'ksh%') ORDER BY CREATE_TIME DESC ");
}else if (!StringUtil.isEmpty(type) && !StringUtil.isEmpty(table) && type.equals("sk")){
//sk 模糊
rs = stmt.executeQuery
("select TABLE_NAME '表名称',table_comment '表说明',CREATE_TIME '创建时间' from information_schema.tables where table_schema='skyp' and TABLE_NAME like '%"+table+"%' and TABLE_NAME like 'sk%' ");
("select TABLE_NAME '表名称',table_comment '表说明',CREATE_TIME '创建时间',table_rows'数量' from information_schema.tables where table_schema='skyp' and TABLE_NAME like '%"+table+"%' and TABLE_NAME like 'sk%' ORDER BY CREATE_TIME DESC");
}else if (!StringUtil.isEmpty(type) && !StringUtil.isEmpty(table) && type.equals("ksh")){
//ksh 模糊
rs = stmt.executeQuery
("select TABLE_NAME '表名称',table_comment '表说明',CREATE_TIME '创建时间' from information_schema.tables where table_schema='skyp' and TABLE_NAME like '%"+table+"%'and TABLE_NAME like 'ksh%' ");
("select TABLE_NAME '表名称',table_comment '表说明',CREATE_TIME '创建时间',table_rows'数量' from information_schema.tables where table_schema='skyp' and TABLE_NAME like '%"+table+"%'and TABLE_NAME like 'ksh%' ORDER BY CREATE_TIME DESC");
}else if (!StringUtil.isEmpty(type) && !StringUtil.isEmpty(table) && type.equals("xz")){
//xz 模糊
rs = stmt.executeQuery
("select TABLE_NAME '表名称',table_comment '表说明',CREATE_TIME '创建时间' from information_schema.tables where table_schema='skyp' and TABLE_NAME like '%"+table+"%'and (TABLE_NAME not like 'sk%' and TABLE_NAME not like 'ksh%') ");
("select TABLE_NAME '表名称',table_comment '表说明',CREATE_TIME '创建时间',table_rows'数量' from information_schema.tables where table_schema='skyp' and TABLE_NAME like '%"+table+"%'and (TABLE_NAME not like 'sk%' and TABLE_NAME not like 'ksh%' ORDER BY CREATE_TIME DESC) ");
} else if (StringUtil.isEmpty(type)&& StringUtil.isEmpty(table)){
//查询所有的
rs = stmt.executeQuery
("select TABLE_NAME '表名称',table_comment '表说明',CREATE_TIME '创建时间' from information_schema.tables where table_schema='skyp' ");//limit " + page + ","+pageSize+"
("select TABLE_NAME '表名称',table_comment '表说明',CREATE_TIME '创建时间',table_rows'数量' from information_schema.tables where table_schema='skyp' ORDER BY CREATE_TIME DESC ");//limit " + page + ","+pageSize+"
}else if(StringUtil.isEmpty(type)&& !StringUtil.isEmpty(table)){
// 模糊查询
rs = stmt.executeQuery
("select TABLE_NAME '表名称',table_comment '表说明',CREATE_TIME '创建时间' from information_schema.tables where table_schema='skyp' and TABLE_NAME like '%"+table+"%'");
("select TABLE_NAME '表名称',table_comment '表说明',CREATE_TIME '创建时间',table_rows'数量' from information_schema.tables where table_schema='skyp' and TABLE_NAME like '%"+table+"%' ORDER BY CREATE_TIME DESC");
}
// ("select TABLE_NAME '表名称',table_comment '表说明',CREATE_TIME '创建时间' from information_schema.tables where table_schema='skyp' and TABLE_NAME like '%"+table+"%' and (TABLE_NAME like 'sk%' or TABLE_NAME like 'ksh%')");
/* if (StringUtil.isEmpty(table)){
//查询所有的
rs = stmt.executeQuery
("select TABLE_NAME '表名称',table_comment '表说明',CREATE_TIME '创建时间' from information_schema.tables where table_schema='skyp' ");//limit " + page + ","+pageSize+"
}else {
// 模糊查询
rs = stmt.executeQuery
("select TABLE_NAME '表名称',table_comment '表说明',CREATE_TIME '创建时间' from information_schema.tables where table_schema='skyp' and TABLE_NAME like '%"+table+"%' and (TABLE_NAME like 'sk%' or TABLE_NAME like 'ksh%')");
}*/
// sk 、 ksh 、xz 三种类型
while (rs.next())
{
Map<Object, Object> map = new HashMap<>();
map.put("TABLE_NAME",rs.getString("表名称"));
map.put("TABLE_COMMENT",rs.getString("表说明"));
map.put("CREATE_TIME",rs.getString("创建时间"));
map.put("TABLE_ROWS",rs.getString("数量"));
database.add(map);
}
int total = database.size();
......@@ -174,16 +154,6 @@ public class DatabaseController {
map.put("xz",xz);
rs.last();
}
/* while (rs.next())
{
int ksh = rs.getInt("count");
map.put("sk",ksh);
map.put("ksh",);
map.put("xz",);
}*/
}
catch (Exception e)
{
......@@ -205,21 +175,12 @@ public class DatabaseController {
@ApiOperation(value = "表详情")
public MapRestResult details(String table){
List<Map<Object, Object>> database = new ArrayList<>();
/* try
{
Class.forName("com.mysql.cj.jdbc.Driver"); //加载MYSQL JDBC驱动程序
System.out.println("Success loading Mysql Driver!");
}
catch (Exception e) {
e.printStackTrace();
return new MapRestResult().error("Error loading Mysql Driver!");
}*/
Connection connect = JDBCUtil.getConnection();
Statement stmt =null;
ResultSet rs = null;
try
{
// Connection connect = DriverManager.getConnection("jdbc:mysql://47.92.48.137:3900/skyp?useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai", "root","gkptCcYy123");
// 连接URL为 jdbc:mysql//服务器地址/数据库名 ,后面的2个参数分别是登陆用户名和密码
stmt = connect.createStatement();
rs = stmt.executeQuery
......@@ -230,7 +191,6 @@ public class DatabaseController {
Map<Object, Object> map = new HashMap<>();
map.put("COLUMN_NAME",rs.getString("列名"));
map.put("COLUMN_TYPE",rs.getString("类型"));
// map.put("DATA_TYPE",rs.getString("类型"));
map.put("COLUMN_COMMENT",rs.getString("字段说明"));
database.add(map);
......
......@@ -174,6 +174,34 @@ public class ZtypController {
}
}
@OperLog(message = "查询可视化案件信息",operation = OperationType.QUERY)
@PostMapping("/getThgaByKsh")
@ApiOperation(value = "查询可视化案件信息")
public R getThgaByKsh(TbYwShseTh tbYwShseTh) {
try {
List<TbStAsj> ajlist = ztypService.getThgaByThbh(tbYwShseTh);
int count = ztypService.getThgaByThbhCount(tbYwShseTh);
return R.ok().data("rows", ajlist).data("total", count);
} catch (Exception e) {
e.printStackTrace();
return R.error(e.getMessage());
}
}
@OperLog(message = "查询可视化嫌疑人信息",operation = OperationType.QUERY)
@PostMapping("/getThxyrByKsh")
@ApiOperation(value = "查询可视化嫌疑人信息")
public R getThxyrByKsh(TbYwShseTh tbYwShseTh) {
try {
List<TbXwZbfzxyr> xyrlist = ztypService.getThxyrByThbh(tbYwShseTh);
int count = ztypService.getThxyrByThbhCount(tbYwShseTh);
return R.ok().data("rows", xyrlist).data("total", count);
} catch (Exception e) {
e.printStackTrace();
return R.error(e.getMessage());
}
}
@OperLog(message = "根据推荐团伙添加犯罪团伙",operation = OperationType.QUERY)
@PostMapping("/addFzthaj")
@ApiOperation(value = "根据推荐团伙添加犯罪团伙")
......
......@@ -64,6 +64,12 @@ public interface ZtypService{
//查询团伙关联嫌疑人信息数量
int getThxyrByThbhCount(TbYwShseTh tbYwShseTh);
//查询团伙关联嫌疑人信息
List<TbXwZbfzxyr> getThxyrByKsh(TbYwShseTh tbYwShseTh);
//查询团伙关联嫌疑人信息数量
int getThxyrByKshCount(TbYwShseTh tbYwShseTh);
//根据推荐的团伙信息添加犯罪团伙
String addFzthaj(TbYwCchshzztjb cchshzztjb, HttpServletRequest request);
......
......@@ -4,6 +4,8 @@ import com.alibaba.fastjson.JSONArray;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.founder.commonutils.model.newPublicEntity.*;
import com.founder.commonutils.model.newPublicEntity.hnkshEntity.HnTbStRygxDTO;
import com.founder.commonutils.model.newPublicEntity.hnkshEntity.kshlinks;
import com.founder.commonutils.model.newPublicEntity.ztypEntity.*;
import com.founder.commonutils.model.newPublicEntity.ztypEntity.AjQueryParam;
import com.founder.commonutils.model.newPublicEntity.ztypEntity.TbStZtypFwbsh;
......@@ -19,6 +21,10 @@ import com.founder.publicapi.mapper.mysqlMapper.ZtypMapper;
import com.founder.publicapi.service.ZtypService;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.data.mongodb.core.MongoTemplate;
import org.springframework.data.mongodb.core.query.Criteria;
import org.springframework.data.mongodb.core.query.Query;
import org.springframework.stereotype.Service;
import org.springframework.util.StringUtils;
......@@ -38,7 +44,13 @@ public class ZtypServiceImpl implements ZtypService {
TbStZtypFwbshMapper tbStZtypFwbshMapper;
@Autowired
private TbStAsjMapper tbStAsjMapper;
@Qualifier("primaryMongoTemplate")
@Autowired
MongoTemplate primaryMongoTemplate;
@Qualifier("secondMongoTemplate")
@Autowired
MongoTemplate secondMongoTemplate;
@Override
public List<ZpajxxEntity> getZpajxx(ZpajxxModel model) {
......@@ -325,8 +337,21 @@ public class ZtypServiceImpl implements ZtypService {
public void run() {
List<String> listResult = new ArrayList<>();
try {
String phone = "15754879533";// 模拟接口
listResult.add(phone);
//身份证号查询出来车牌号还有手机号
Query queryPhone = new Query();
// 身份证查询手机号码
queryPhone.addCriteria(Criteria.where("cecoS").is(value));
Integer page=1;
// 设置分页
queryPhone.skip((page - 1) * 200).limit(200);
// 列表查询
ArrayList<PeopleInfo> peopleInfos = new ArrayList<>();
List<Mobilereg> mobileregList = secondMongoTemplate.find(queryPhone, Mobilereg.class,"wb0017mobilereg");
if (mobileregList != null && mobileregList.size() > 0) {
for (Mobilereg mobilereg : mobileregList) {
listResult.add(mobilereg.getMsis());
}
}
if (listResult == null) {
listResult = new ArrayList<>();
}
......@@ -373,8 +398,21 @@ public class ZtypServiceImpl implements ZtypService {
public void run() {
List<String> listResult = new ArrayList<>();
try {
String phone = "蒙AKH824";// 模拟接口
listResult.add(phone);
// 身份证查车
Query queryCar = new Query();
List<Carowner> CarownerList = new ArrayList<>();
queryCar.addCriteria(Criteria.where("ceco").is(value));
Integer page=1;
// 设置分页
queryCar.skip((page - 1) * 200).limit(200);
// 列表查询
CarownerList = primaryMongoTemplate.find(queryCar, Carowner.class,"wb0099carowner");
if (CarownerList != null && CarownerList.size() > 0) {
for (Carowner carowner : CarownerList) {
listResult.add(carowner.getVeco());
}
}
if (listResult == null) {
listResult = new ArrayList<>();
}
......@@ -586,9 +624,9 @@ public class ZtypServiceImpl implements ZtypService {
yhkh.setValue(zjhm);
cachedThreadPool.execute(yhkh);
Thgx thgx = new Thgx();
/*Thgx thgx = new Thgx();
thgx.setValue(zjhm);
cachedThreadPool.execute(thgx);
cachedThreadPool.execute(thgx);*/
Tagx tagx = new Tagx();
tagx.setValue(zjhm);
......
{
"status": 200,
"msg": "ok",
"data": {
"kshdata": {
"nodes": [
{
"id": "542121199905080056",
"label": "542121199905080056",
"properties": {
"id": "542121199905080056",
"label": "542121199905080056",
"imgType": "idcard",
"imagePhoto": null,
"boderColor": null
}
},
{
"id": "542121197905080083",
"label": "542121197905080083",
"properties": {
"id": "542121197905080083",
"label": "542121197905080083",
"imgType": "idcard",
"imagePhoto": null,
"boderColor": null
}
},
{
"id": "542121197905080069",
"label": "542121197905080069",
"properties": {
"id": "542121197905080069",
"label": "542121197905080069",
"imgType": "idcard",
"imagePhoto": null,
"boderColor": null
}
}
],
"links": [
{
"source": "542121199905080056",
"target": "542121197905080083",
"label": "出入境/2023-07-01 23:00:00",
"properties": {
"time": null,
"source": "542121199905080056",
"target": "542121197905080083",
"label": "出入境/2023-07-01 23:00:00",
"glgxData": [
{
"bsh": "542121199905080056",
"bshlx": "idcard",
"glbsh": "542121197905080083",
"glbshlx": "idcard",
"sjly": "科信",
"glgx": "出入境",
"glsj": null
}
]
}
},
{
"source": "542121199905080056",
"target": "542121197905080069",
"label": "出入境/2023-07-01 23:00:00",
"properties": {
"time": null,
"source": "542121199905080056",
"target": "542121197905080069",
"label": "出入境/2023-07-01 23:00:00",
"glgxData": [
{
"bsh": "542121199905080056",
"bshlx": "idcard",
"glbsh": "542121197905080069",
"glbshlx": "idcard",
"sjly": "科信",
"glgx": "出入境",
"glsj": null
}
]
}
}
]
},
"dataSumup": {
"name": "出入境",
"list": [
"542121199905080056",
"542121197905080083",
"542121199905080056"
]
}
},
"count": null
}
\ No newline at end of file
{
"status": 200,
"msg": "ok",
"data": {
"kshdata": {
"nodes": [
{
"id": "542121199905080056",
"label": "542121199905080056",
"properties": {
"id": "542121199905080056",
"label": "542121199905080056",
"imgType": "idcard",
"imagePhoto": null,
"boderColor": null
}
},
{
"id": "542121197905080083",
"label": "542121197905080083",
"properties": {
"id": "542121197905080083",
"label": "542121197905080083",
"imgType": "idcard",
"imagePhoto": null,
"boderColor": null
}
},
{
"id": "542121197905080069",
"label": "542121197905080069",
"properties": {
"id": "542121197905080069",
"label": "542121197905080069",
"imgType": "idcard",
"imagePhoto": null,
"boderColor": null
}
}
],
"links": [
{
"source": "542121199905080056",
"target": "542121197905080083",
"label": "出行分析/同航班2023-07-01 14:00:00",
"properties": {
"time": null,
"source": "542121199905080056",
"target": "542121197905080083",
"label": "出行分析/同航班2023-07-01 14:00:00",
"glgxData": [
{
"bsh": "542121199905080056",
"bshlx": "idcard",
"glbsh": "542121197905080083",
"glbshlx": "idcard",
"sjly": "科信",
"glgx": "出入境",
"glsj": null
}
]
}
},
{
"source": "542121199905080056",
"target": "542121197905080069",
"label": "出行分析/同航班2023-07-01 14:00:00",
"properties": {
"time": null,
"source": "542121199905080056",
"target": "542121197905080069",
"label": "出行分析/同航班2023-07-01 14:00:00",
"glgxData": [
{
"bsh": "542121199905080056",
"bshlx": "idcard",
"glbsh": "542121197905080069",
"glbshlx": "idcard",
"sjly": "科信",
"glgx": "出行分析",
"glsj": null
}
]
}
}
]
},
"dataSumup": {
"name": "出行分析",
"list": [
"542121199905080056",
"542121197905080083",
"542121199905080056"
]
}
},
"count": null
}
\ No newline at end of file
{
"status": 200,
"msg": "ok",
"data": {
"kshdata": {
"nodes": [
{
"id": "18199625540",
"label": "18199625540",
"properties": {
"id": "18199625540",
"label": "18199625540",
"imgType": "sjk",
"imagePhoto": null,
"boderColor": null
}
},
{
"id": "18899663251",
"label": "18899663251",
"properties": {
"id": "18899663251",
"label": "18899663251",
"imgType": "sjk",
"imagePhoto": null,
"boderColor": null
}
},
{
"id": "13654218752",
"label": "13654218752",
"properties": {
"id": "13654218752",
"label": "13654218752",
"imgType": "sjk",
"imagePhoto": null,
"boderColor": null
}
}
],
"links": [
{
"source": "18199625540",
"target": "18899663251",
"label": "寄递3次",
"properties": {
"time": null,
"source": "18199625540",
"target": "18899663251",
"label": "邮寄3次",
"glgxData": [
{
"bsh": "18199625540",
"bshlx": "sjk",
"glbsh": "18899663251",
"glbshlx": "sjk",
"sjly": "科信",
"glgx": "寄递分析",
"glsj": null
}
]
}
},
{
"source": "18199625540",
"target": "13654218752",
"label": "寄递6次",
"properties": {
"time": null,
"source": "18199625540",
"target": "13654218752",
"label": "寄递6次",
"glgxData": [
{
"bsh": "18199625540",
"bshlx": "sjk",
"glbsh": "13654218752",
"glbshlx": "sjk",
"sjly": "科信",
"glgx": "寄递分析",
"glsj": null
}
]
}
}
]
},
"dataSumup": {
"name": "寄递分析",
"list": [
"18199625540",
"18899663251",
"13654218752"
]
}
},
"count": null
}
\ No newline at end of file
{
"status": 200,
"msg": "ok",
"data": {
"kshdata": {
"nodes": [
{
"id": "542121199905080056",
"label": "542121199905080056",
"properties": {
"id": "542121199905080056",
"label": "542121199905080056",
"imgType": "idcard",
"imagePhoto": null,
"boderColor": null
}
},
{
"id": "542121197905080083",
"label": "542121197905080083",
"properties": {
"id": "542121197905080083",
"label": "542121197905080083",
"imgType": "idcard",
"imagePhoto": null,
"boderColor": null
}
},
{
"id": "542121197905080069",
"label": "542121197905080069",
"properties": {
"id": "542121197905080069",
"label": "542121197905080069",
"imgType": "idcard",
"imagePhoto": null,
"boderColor": null
}
}
],
"links": [
{
"source": "542121199905080056",
"target": "542121197905080083",
"label": "家谱关系(父子)",
"properties": {
"time": null,
"source": "542121199905080056",
"target": "542121197905080083",
"label": "家谱关系(父子)",
"glgxData": [
{
"bsh": "542121199905080056",
"bshlx": "idcard",
"glbsh": "542121197905080083",
"glbshlx": "idcard",
"sjly": "科信",
"glgx": "家谱关系",
"glsj": null
}
]
}
},
{
"source": "542121199905080056",
"target": "542121197905080069",
"label": "家谱关系(母子)",
"properties": {
"time": null,
"source": "542121199905080056",
"target": "542121197905080069",
"label": "家谱关系(母子)",
"glgxData": [
{
"bsh": "542121199905080056",
"bshlx": "idcard",
"glbsh": "542121197905080069",
"glbshlx": "idcard",
"sjly": "科信",
"glgx": "家谱关系",
"glsj": null
}
]
}
}
]
},
"dataSumup": {
"name": "家谱关系",
"list": [
"542121199905080056",
"542121197905080083",
"542121199905080056"
]
}
},
"count": null
}
\ No newline at end of file
{
"status": 200,
"msg": "ok",
"data": {
"kshdata": {
"nodes": [
{
"id": "542121199905080056",
"label": "542121199905080056",
"properties": {
"id": "542121199905080056",
"label": "542121199905080056",
"imgType": "idcard",
"imagePhoto": null,
"boderColor": null
}
},
{
"id": "542121197905080083",
"label": "542121197905080083",
"properties": {
"id": "542121197905080083",
"label": "542121197905080083",
"imgType": "idcard",
"imagePhoto": null,
"boderColor": null
}
},
{
"id": "542121197905080069",
"label": "542121197905080069",
"properties": {
"id": "542121197905080069",
"label": "542121197905080069",
"imgType": "idcard",
"imagePhoto": null,
"boderColor": null
}
}
],
"links": [
{
"source": "542121199905080056",
"target": "542121197905080083",
"label": "入住分析(同酒店)/2023-07-05 23:00:00",
"properties": {
"time": null,
"source": "542121199905080056",
"target": "542121197905080083",
"label": "入住分析(同酒店)/2023-07-05 23:00:00",
"glgxData": [
{
"bsh": "542121199905080056",
"bshlx": "idcard",
"glbsh": "542121197905080083",
"glbshlx": "idcard",
"sjly": "科信",
"glgx": "入住分析",
"glsj": null
}
]
}
},
{
"source": "542121199905080056",
"target": "542121197905080069",
"label": "入住分析(同酒店)/2023-07-05 23:00:00",
"properties": {
"time": null,
"source": "542121199905080056",
"target": "542121197905080069",
"label": "入住分析(同酒店)/2023-07-05 23:00:00",
"glgxData": [
{
"bsh": "542121199905080056",
"bshlx": "idcard",
"glbsh": "542121197905080069",
"glbshlx": "idcard",
"sjly": "科信",
"glgx": "入住分析",
"glsj": null
}
]
}
}
]
},
"dataSumup": {
"name": "入住分析",
"list": [
"542121199905080056",
"542121197905080083",
"542121199905080056"
]
}
},
"count": null
}
\ No newline at end of file
{
"status": 200,
"msg": "ok",
"data": {
"kshdata": {
"nodes": [
{
"id": "542121199905080056",
"label": "542121199905080056",
"properties": {
"id": "542121199905080056",
"label": "542121199905080056",
"imgType": "idcard",
"imagePhoto": null,
"boderColor": null
}
},
{
"id": "542121197905080083",
"label": "542121197905080083",
"properties": {
"id": "542121197905080083",
"label": "542121197905080083",
"imgType": "idcard",
"imagePhoto": null,
"boderColor": null
}
},
{
"id": "542121197905080069",
"label": "542121197905080069",
"properties": {
"id": "542121197905080069",
"label": "542121197905080069",
"imgType": "idcard",
"imagePhoto": null,
"boderColor": null
}
}
],
"links": [
{
"source": "542121199905080056",
"target": "542121197905080083",
"label": "社会关系(大学校友)",
"properties": {
"time": null,
"source": "542121199905080056",
"target": "542121197905080083",
"label": "社会关系(大学校友)",
"glgxData": [
{
"bsh": "542121199905080056",
"bshlx": "idcard",
"glbsh": "542121197905080083",
"glbshlx": "idcard",
"sjly": "科信",
"glgx": "社会关系",
"glsj": null
}
]
}
},
{
"source": "542121199905080056",
"target": "542121197905080069",
"label": "社会关系(大学校友)",
"properties": {
"time": null,
"source": "542121199905080056",
"target": "542121197905080069",
"label": "社会关系(大学校友)",
"glgxData": [
{
"bsh": "542121199905080056",
"bshlx": "idcard",
"glbsh": "542121197905080069",
"glbshlx": "idcard",
"sjly": "科信",
"glgx": "社会关系",
"glsj": null
}
]
}
}
]
},
"dataSumup": {
"name": "社会关系",
"list": [
"542121199905080056",
"542121197905080083",
"542121199905080056"
]
}
},
"count": null
}
\ No newline at end of file
{
"status": 200,
"msg": "ok",
"data": {
"kshdata": {
"nodes": [
{
"id": "BGSC001",
"label": "BGSC001",
"id": "18199625540",
"label": "18199625540",
"properties": {
"id": "BGSC001",
"label": "BGSC001",
"imgType": "imsi"
"id": "18199625540",
"label": "18199625540",
"imgType": "sjk",
"imagePhoto": null,
"boderColor": null
}
},
{
"id": "KFS001",
"label": "KFS001",
"id": "430123196510265891",
"label": "430123196510265891",
"properties": {
"id": "KFS001",
"label": "KFS001",
"imgType": "imei"
"id": "430123196510265891",
"label": "430123196510265891",
"imgType": "imsi",
"imagePhoto": null,
"boderColor": null
}
},
{
"id": "18545251333",
"label": "18545251333",
"id": "430123196510265892",
"label": "430123196510265892",
"properties": {
"id": "18545251333",
"label": "18545251333",
"imgType": "sjk"
}
},
{
"id": "长沙市第一医院",
"label": "长沙市第一医院",
"properties": {
"id": "长沙市第一医院",
"label": "长沙市第一医院",
"imgType": "mac"
"id": "430123196510265892",
"label": "430123196510265892",
"imgType": "imei",
"imagePhoto": null,
"boderColor": null
}
}
],
"links": [
{
"source": "430123196510265891",
"target": "BGSC001",
"label": "IMSI",
"properties": {
"time": "2022-09-16 09:59:11",
"label": "IMSI",
"source": "430123196510265891",
"target": "BGSC001"
}
},
{
"source": "430123196510265891",
"target": "KFS001",
"label": "IMEI",
"properties": {
"time": "2022-09-16 09:59:11",
"label": "IMEI",
"source": "430123196510265891",
"target": "KFS001"
}
},
{
"source": "430123196510265891",
"target": "18545251333",
"label": "手机号",
"source": "18199625540",
"target": "430123196510265892",
"label": "imsi",
"properties": {
"time": "2022-09-16 09:59:11",
"label": "手机号",
"source": "430123196510265891",
"target": "18545251333"
"time": null,
"source": "18199625540",
"target": "430123196510265892",
"label": "imsi",
"glgxData": [
{
"bsh": "18199625540",
"bshlx": "sjk",
"glbsh": "430123196510265892",
"glbshlx": "imsi",
"sjly": "科信",
"glgx": "四码关联",
"glsj": null
}
]
}
},
{
"source": "430123196510265891",
"target": "长沙市第一医院",
"label": "MAC",
"source": "18199625540",
"target": "430123196510265891",
"label": "imei",
"properties": {
"time": "2022-09-16 09:59:11",
"label": "MAC",
"source": "430123196510265891",
"target": "长沙市第一医院"
"time": null,
"source": "18199625540",
"target": "430123196510265891",
"label": "imei",
"glgxData": [
{
"bsh": "18199625540",
"bshlx": "sjk",
"glbsh": "430123196510265891",
"glbshlx": "imei",
"sjly": "科信",
"glgx": "四码关联",
"glsj": null
}
]
}
}
]
......@@ -88,10 +88,11 @@
"dataSumup": {
"name": "四码关联",
"list": [
"BGSC001",
"KFS001",
"18545251333",
"长沙市第一医院"
"18199625540",
"430123196510265892",
"430123196510265891"
]
}
},
"count": null
}
\ No newline at end of file
{
"status": 200,
"msg": "ok",
"data": {
"kshdata": {
"nodes": [
{
"id": "18199625540",
"label": "18199625540",
"properties": {
"id": "18199625540",
"label": "18199625540",
"imgType": "sjk",
"imagePhoto": null,
"boderColor": null
}
},
{
"id": "521",
"label": "521",
"properties": {
"id": "521",
"label": "521",
"imgType": "sjk",
"imagePhoto": null,
"boderColor": null
}
},
{
"id": "18865417111",
"label": "18865417111",
"properties": {
"id": "18865417111",
"label": "18865417111",
"imgType": "sjk",
"imagePhoto": null,
"boderColor": null
}
}
],
"links": [
{
"source": "18199625540",
"target": "18865417111",
"label": "通话时长501分钟",
"properties": {
"time": null,
"source": "18199625540",
"target": "18865417111",
"label": "通话时长501分钟",
"glgxData": [
{
"bsh": "18199625540",
"bshlx": "sjk",
"glbsh": "18865417111",
"glbshlx": "sjk",
"sjly": "科信",
"glgx": "通联分析",
"glsj": null
}
]
}
},
{
"source": "18199625540",
"target": "521",
"label": "通话时长501分钟",
"properties": {
"time": null,
"source": "18199625540",
"target": "521",
"label": "通话时长501分钟",
"glgxData": [
{
"bsh": "18199625540",
"bshlx": "sjk",
"glbsh": "521",
"glbshlx": "sjk",
"sjly": "科信",
"glgx": "通联分析",
"glsj": null
}
]
}
}
]
},
"dataSumup": {
"name": "通联分析",
"list": [
"18199625540",
"521",
"18865417111"
]
}
},
"count": null
}
\ No newline at end of file
{
"status": 200,
"msg": "ok",
"data": {
"kshdata": {
"nodes": [
{
"id": "10086",
"label": "10086",
"properties": {
"id": "10086",
"label": "10086",
"imgType": "sjk",
"imagePhoto": null,
"boderColor": null
}
},
{
"id": "13861644333",
"label": "何乐/13861644333",
"properties": {
"id": "13861644333",
"label": "何乐/13861644333",
"imgType": "sjk",
"imagePhoto": null,
"boderColor": null
}
},
{
"id": "18199625540",
"label": "李凯/18199625540",
"properties": {
"id": "15148091516",
"label": "李凯/18199625540",
"imgType": "sjk",
"imagePhoto": null,
"boderColor": null
}
},
{
"id": "18865417111",
"label": "陈五/18865417111",
"properties": {
"id": "18865417111",
"label": "陈五/18865417111",
"imgType": "sjk",
"imagePhoto": null,
"boderColor": null
}
}
],
"links": [
{
"source": "18199625540",
"target": "10086",
"label": "通话次数3次",
"properties": {
"time": "2023-09-08",
"source": "18199625540",
"target": "10086",
"label": "通话次数3次",
"glgxData": [
{
"bsh": "18199625540",
"bshlx": "sjk",
"glbsh": "10086",
"glbshlx": "sjk",
"sjly": "科信",
"glgx": "通联关系",
"glsj": "2023-09-08"
}
]
}
},
{
"source": "18199625540",
"target": "13861644333",
"label": "通话次数1次",
"properties": {
"time": "2023-09-08",
"source": "18199625540",
"target": "13861644333",
"label": "通话次数1次",
"glgxData": [
{
"bsh": "18199625540",
"bshlx": "sjk",
"glbsh": "13861644333",
"glbshlx": "sjk",
"sjly": "科兴",
"glgx": "通联关系",
"glsj": "2023-09-08"
}
]
}
},
{
"source": "18199625540",
"target": "18865417111",
"label": "通话次数1次",
"properties": {
"time": "2023-09-09",
"source": "18199625540",
"target": "18865417111",
"label": "通话次数1次",
"glgxData": [
{
"bsh": "18199625540",
"bshlx": "sjk",
"glbsh": "18865417111",
"glbshlx": "sjk",
"sjly": "科兴",
"glgx": "通联关系",
"glsj": "2023-09-09"
}
]
}
}
]
},
"dataSumup": {
"name": "通联关系",
"list": [
"10086",
"13561644544",
"15148091516",
"18199625540"
]
}
},
"count": null
}
\ No newline at end of file
{
"status": 200,
"msg": "ok",
"data": {
"kshdata": {
"nodes": [
{
"id": "542121199905080056",
"label": "542121199905080056",
"properties": {
"id": "542121199905080056",
"label": "542121199905080056",
"imgType": "idcard",
"imagePhoto": null,
"boderColor": null
}
},
{
"id": "542121197905080083",
"label": "542121197905080083",
"properties": {
"id": "542121197905080083",
"label": "542121197905080083",
"imgType": "idcard",
"imagePhoto": null,
"boderColor": null
}
},
{
"id": "542121197905080069",
"label": "542121197905080069",
"properties": {
"id": "542121197905080069",
"label": "542121197905080069",
"imgType": "idcard",
"imagePhoto": null,
"boderColor": null
}
}
],
"links": [
{
"source": "542121199905080056",
"target": "542121197905080083",
"label": "同行分析/同航班3次",
"properties": {
"time": null,
"source": "542121199905080056",
"target": "542121197905080083",
"label": "同行分析/同航班3次",
"glgxData": [
{
"bsh": "542121199905080056",
"bshlx": "idcard",
"glbsh": "542121197905080083",
"glbshlx": "idcard",
"sjly": "科信",
"glgx": "出入境",
"glsj": null
}
]
}
},
{
"source": "542121199905080056",
"target": "542121197905080069",
"label": "同行分析/同航班3次",
"properties": {
"time": null,
"source": "542121199905080056",
"target": "542121197905080069",
"label": "同行分析/同航班3次",
"glgxData": [
{
"bsh": "542121199905080056",
"bshlx": "idcard",
"glbsh": "542121197905080069",
"glbshlx": "idcard",
"sjly": "科信",
"glgx": "同行分析",
"glsj": null
}
]
}
}
]
},
"dataSumup": {
"name": "同行分析",
"list": [
"542121199905080056",
"542121197905080083",
"542121199905080056"
]
}
},
"count": null
}
\ No newline at end of file
{
"status": 200,
"msg": "ok",
"data": {
"kshdata": {
"nodes": [
{
"id": "542121199905080056",
"label": "542121199905080056",
"properties": {
"id": "542121199905080056",
"label": "542121199905080056",
"imgType": "idcard",
"imagePhoto": null,
"boderColor": null
}
},
{
"id": "542121197905080083",
"label": "542121197905080083",
"properties": {
"id": "542121197905080083",
"label": "542121197905080083",
"imgType": "idcard",
"imagePhoto": null,
"boderColor": null
}
},
{
"id": "542121197905080069",
"label": "542121197905080069",
"properties": {
"id": "542121197905080069",
"label": "542121197905080069",
"imgType": "idcard",
"imagePhoto": null,
"boderColor": null
}
}
],
"links": [
{
"source": "542121199905080056",
"target": "542121197905080083",
"label": "同住关系(同房间)/2023-07-05 23:00:00",
"properties": {
"time": null,
"source": "542121199905080056",
"target": "542121197905080083",
"label": "同住关系(同房间)/2023-07-05 23:00:00",
"glgxData": [
{
"bsh": "542121199905080056",
"bshlx": "idcard",
"glbsh": "542121197905080083",
"glbshlx": "idcard",
"sjly": "科信",
"glgx": "同住关系",
"glsj": null
}
]
}
},
{
"source": "542121199905080056",
"target": "542121197905080069",
"label": "同住关系(同房间)/2023-07-05 23:00:00",
"properties": {
"time": null,
"source": "542121199905080056",
"target": "542121197905080069",
"label": "同住关系(同房间)/2023-07-05 23:00:00",
"glgxData": [
{
"bsh": "542121199905080056",
"bshlx": "idcard",
"glbsh": "542121197905080069",
"glbshlx": "idcard",
"sjly": "科信",
"glgx": "同住关系",
"glsj": null
}
]
}
}
]
},
"dataSumup": {
"name": "同住关系",
"list": [
"542121199905080056",
"542121197905080083",
"542121199905080056"
]
}
},
"count": null
}
\ No newline at end of file
{
"status": 200,
"msg": "ok",
"data": {
"kshdata": {
"nodes": [
{
"id": "6226201910281010001",
"label": "转账/3万元",
"properties": {
"id": "6226201910281010001",
"label": "转账/3万元",
"imgType": "yhk",
"imagePhoto": null,
"boderColor": null
}
},
{
"id": "6226201910211010003",
"label": "转账/7万元",
"properties": {
"id": "6226201910211010003",
"label": "转账/7万元",
"imgType": "yhk",
"imagePhoto": null,
"boderColor": null
}
},
{
"id": "6226201910211010002",
"label": "转账/10万元",
"properties": {
"id": "6226201910211010003",
"label": "转账/10万元",
"imgType": "yhk",
"imagePhoto": null,
"boderColor": null
}
}
],
"links": [
{
"source": "6226201910211010002",
"target": "6226201910281010001",
"label": "2023-08-05/转账3万元",
"properties": {
"time": "2023-08-05",
"source": "6226201910211010002",
"target": "6226201910281010001",
"label": "2023-08-05",
"glgxData": [
{
"bsh": "6226201910211010002",
"bshlx": "yhk",
"glbsh": "6226201910281010001",
"glbshlx": "yhk",
"sjly": "库",
"glgx": "转账记录",
"glsj": "2023-08-05"
}
]
}
},
{
"source": "6226201910211010002",
"target": "6226201910211010003",
"label": "2023-08-10/转账7万元",
"properties": {
"time": "2023-08-10",
"source": "6226201910211010002",
"target": "6226201910211010003",
"label": "2023-08-10/转账7万元",
"glgxData": [
{
"bsh": "6226201910211010002",
"bshlx": "yhk",
"glbsh": "6226201910211010003",
"glbshlx": "yhk",
"sjly": "库",
"glgx": "转账记录",
"glsj": "2023-08-10"
}
]
}
}
]
},
"dataSumup": {
"name": "资金流",
"list": [
"6226201910281010001",
"6226201910211010003",
"6226201910211010002"
]
}
},
"count": null
}
\ 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