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.

46 lines
908 B
Java

2 months ago
package com.supervision.pdfqaserver.dto;
import com.supervision.pdfqaserver.domain.ErAttribute;
2 months ago
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;
public ErAttribute toErAttribute() {
ErAttribute erAttribute = new ErAttribute();
erAttribute.setId(this.id);
erAttribute.setDomainMetadataId(this.domainMetadataId);
erAttribute.setAttrName(this.attrName);
erAttribute.setAttrValueType(this.attrValueType);
erAttribute.setErType(this.erType);
return erAttribute;
}
2 months ago
}