Administrator
2025-08-29 9b68de814d07c5a736c7fbdeb22ba8b666a02cad
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
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;
 
}