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/GraphReqVO.java

33 lines
520 B
Java

package com.supervision.police.vo;
import lombok.Data;
import java.util.List;
/**
*
*/
@Data
public class GraphReqVO {
/**
* id
*/
private String caseId;
/**
*
*/
private String picType;
/**
*
*/
private String queryStr;
/**
* (
*/
private List<String> nodeLabels;
/**
*
*/
private List<String> relTypes;
}