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.

43 lines
799 B
Java

package com.supervision.pdfqaserver.dto;
import com.supervision.pdfqaserver.domain.Intention;
import lombok.Data;
/**
*
*/
@Data
public class IntentDTO {
private String id;
/**
*
*/
private String digest;
/**
*
*/
private String desc;
/**
* id
*/
private String domainCategoryId;
/**
* 0=1=
*/
private String generationType;
public IntentDTO(Intention intention){
this.id = intention.getId();
this.digest = intention.getDigest();
this.desc = intention.getDesc();
this.domainCategoryId = intention.getDomainCategoryId();
this.generationType = intention.getGenerationType();
}
}