Administrator
6 days ago 485c6557ae50afe6703c0b64169ce8eb634b1924
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package cc.mrbird.febs.yinhe.req;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.validation.constraints.NotBlank;
 
@Data
@ApiModel(value = "YHAitalkItemStreamDto", description = "参数")
public class YHAitalkItemStreamDto {
 
    @NotBlank(message = "会话不能为空")
    @ApiModelProperty(value = "会话ID", example = "10")
    private String talkId;
 
    @NotBlank(message = "内容不能为空")
    @ApiModelProperty(value = "内容", example = "10")
    private String reqContext;
}