package cc.mrbird.febs.ai.req.memberTalk;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import javax.validation.constraints.NotBlank;
|
|
/**
|
* @author Administrator
|
*/
|
@Data
|
@ApiModel(value = "ApiMemberTalkAnswerDto", description = "参数")
|
public class ApiMemberTalkAnswerDto {
|
|
|
@NotBlank(message = "会话ID不能为空")
|
@ApiModelProperty(value = "会话ID", example = "10")
|
private String id;
|
|
|
@NotBlank(message = "回答不能为空")
|
@ApiModelProperty(value = "回答", example = "10")
|
private String reqContext;
|
|
}
|