Administrator
6 days ago 77f0205db7a5b9f3d0da4c8e18b7a706d5cf37b7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package cc.mrbird.febs.yinhe.res;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "YHAitalkItemStreamVo", description = "详情响应")
public class YHAitalkItemStreamVo {
 
    @ApiModelProperty(value = "消息")
    private String content;
 
    @ApiModelProperty(value = "思考")
    private String reasoningContent;
}