Administrator
1 days ago 8130bed63a505cf718481c0d95d3fcf7b037db96
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package cc.mrbird.febs.ai.req.memberTalkStream;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author Administrator
 */
@Data
@ApiModel(value = "AiTalkAnswerStreamDto", description = "参数")
public class AiTalkAnswerStreamDto {
 
 
    @ApiModelProperty(value = "类型 1:亮点 2:建议 3:参考答案 4:知识点总结", example = "10")
    private Integer type;
 
 
    @ApiModelProperty(value = "会话ID", example = "10")
    private String id;
 
 
    @ApiModelProperty(value = "回答", example = "10")
    private String reqContext;
 
 
}