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.

35 lines
474 B
Java

2 months ago
package com.supervision.pdfqaserver.dto;
import lombok.Data;
@Data
public class ERAttributeDTO {
private String id;
/**
* id
2 months ago
*/
private String domainMetadataId;
2 months ago
/**
*
2 months ago
*/
private String erName;
2 months ago
/**
*
2 months ago
*/
private String attrName;
2 months ago
/**
*
2 months ago
*/
private String attrValueType;
2 months ago
/**
* 1 2
2 months ago
*/
private String erType;
2 months ago
}