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.

47 lines
864 B
Java

2 months ago
package com.supervision.pdfqaserver.dto;
import lombok.Data;
/**
*
*/
@Data
public class ERAttributeDTO {
private String id;
/**
* truncation_entity_extractionidtruncation_relation_extractionid
*/
private String terId;
/**
* 0terIdid 1terIdid
*/
private String type;
/**
*
*/
private String attribute;
/**
*
*/
private String value;
/**
* 0 1
*/
private String dataType;
public ERAttributeDTO() {
}
public ERAttributeDTO(String attribute, String value, String dataType) {
this.attribute = attribute;
this.value = value;
this.dataType = dataType;
}
}