You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fu-hsi-service/src/main/java/com/supervision/police/vo/GraphDebugReqVO.java

35 lines
435 B
Java

package com.supervision.police.vo;
import lombok.Data;
import java.util.List;
/**
* 图谱推理调试参数
*/
@Data
public class GraphDebugReqVO {
/**
* 案件id
*/
private String caseId;
/**
* 原子指标id
*/
private String atomicIndexId;
/**
* 查询语言
*/
private String queryLang;
/**
* 行为人id
*/
private List<String> lawActorIdList;
}