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.
virtual-patient/virtual-patient-model/src/main/java/com/supervision/vo/rasa/RasaTalkVo.java

23 lines
277 B
Java

package com.supervision.vo.rasa;
import lombok.Data;
@Data
public class RasaTalkVo {
/**
* 问题
*/
private String question;
/**
* 会话标识
*/
private String sessionId;
/**
* 模型id
*/
private String modelId;
}