Administrator
6 days ago bcd26a95a940b399d7cf9fbd5da79144b7068f53
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package cc.mrbird.febs.yinhe.res;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "YHSendInitVo", description = "参数")
public class YHSendInitVo {
 
    @ApiModelProperty(value = "会话ID", example = "1")
    private String talkId;
 
}