Commit 4e86d473 by yangyang

可视化相关接口处理(湖南)

parent aa200fdb
......@@ -9,7 +9,7 @@ import java.util.HashSet;
import java.util.List;
/**
* @author zzj
* @author yangyang
* @description 案件团伙可视化分析
*/
@Data
......@@ -60,8 +60,8 @@ public class AjThKshfxPojo {
/**
* setChildrenList 设置子节点列表
* @param children: 子节点列表
* @author lystar
* 2022/4/22 15:22
* @author yangyang
* 2022/7/22 15:22
*/
public void setChildrenList(List<AjThKshfxPojo> children) {
if (children == null){
......@@ -95,8 +95,8 @@ public class AjThKshfxPojo {
/**
* cloneAjth 深拷贝类信息,不拷贝children
* @return org.springblade.founder.hcyprw.entity.AjThKshfxPojo
* @author lystar
* 2022/4/22 15:22
* @author yangyang
* 2022/7/22 15:22
*/
public AjThKshfxPojo cloneAjth() {
AjThKshfxPojo clone = new AjThKshfxPojo();
......
......@@ -22,6 +22,21 @@ public class KsjResultPojo {
@Data
public static class Nodes {
/**
* 点信息的唯一值(例如证件号码),节点是否去重就是依据id
*/
private String id;
/**
节点下面显示的名称,如果需要多个显示,请传
"李xx\n23岁\n前端开发工程师" 单个的话就 "李xx" */
private String label;
/**
* 将节点所有的信息全部放到这个字段中,包括id和label,注意的是,这个对象必须有一个字段imgType(idcard: 人,aj: 案件,cph:车,sjk:手机,yhk:银行卡)判断节点图片
*/
private KsjResultPojo.Nodes.Properties properties;
@Data
public static class Properties {
/**
节点下面显示的名称,如果需要多个显示,请传
"李xx\n23岁\n前端开发工程师" 单个的话就 "李xx"
*/
......@@ -35,9 +50,11 @@ public class KsjResultPojo {
*/
private String imgType;
/**
* 将节点所有的信息全部放到这个字段中,包括id和label,注意的是,这个对象必须有一个字段imgType(idcard: 人,aj: 案件,cph:车,sjk:手机,yhk:银行卡)判断节点图片
* 节点颜色 #FF00FF
*/
private Object properties;
private String boderColor;
}
}
@Data
......@@ -55,12 +72,24 @@ public class KsjResultPojo {
*/
private String label;
/**
* (idcard: 人,aj: 案件,cph:车,sjk:手机,yhk:银行卡)判断节点图片
* 将连线所有的信息全部放到这个字段中,注意事项同上,没有必要字段imgType
*/
private String imgType;
private KsjResultPojo.Links.Properties properties;
@Data
public static class Properties {
/**
* 将连线所有的信息全部放到这个字段中,注意事项同上,没有必要字段imgType
* 源节点id值
*/
private Object properties;
private String source;
/**
* 目标节点id值
*/
private String target;
/**
* 节点连线显示文字
*/
private String label;
}
}
}
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