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
794 B
Java

package com.supervision.dto.roundAsk;
import com.supervision.ngbatis.domain.tag.ItemLeaf;
import lombok.Data;
import java.util.List;
import java.util.Map;
@Data
public class SessionParamDTO {
/**
*
*/
private String originalQuestion;
/**
* ID
*/
private String sessionId;
/**
*
*/
private String intent;
/**
* ,
*/
private String entityValueByExtract;
/**
*
*/
private ItemLeaf matchItemLeaf;
/**
* ,,
* key ID
* value
*/
private Map<String, ItemLeaf> waitMatchItemLeafMap;
}