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.

45 lines
798 B
Java

2 months ago
package com.supervision.pdfqaserver.dto;
import lombok.Data;
import java.util.ArrayList;
2 months ago
import java.util.List;
/**
*
*/
@Data
public class EntityExtractionDTO {
private String id;
private String truncationId;
/**
*
*/
private String entity;
2 months ago
/**
*
*/
private String entityEn;
2 months ago
/**
*
*/
private String name;
private List<ERAttributeDTO> attributes = new ArrayList<>();
2 months ago
public EntityExtractionDTO() {
}
public EntityExtractionDTO(String truncationId, String entity, String name, List<ERAttributeDTO> attributes) {
this.truncationId = truncationId;
this.entity = entity;
this.name = name;
this.attributes = attributes;
}
}