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/dto/IndexDetail.java

53 lines
697 B
Java

10 months ago
package com.supervision.police.dto;
import lombok.Data;
import java.util.List;
@Data
public class IndexDetail {
/**
*
*/
private String indexName;
/**
*
*/
private Integer score;
/**
*
*/
private String indexResult;
/**
*
*/
private String record;
/**
* ids
*/
private String atomicIds;
9 months ago
/**
*
*/
private String preResult;
private boolean newFlag;
10 months ago
/**
*
*/
private List<AtomicIndexDTO> children;
9 months ago
/**
*
*/
private String judgeLogic;
10 months ago
}