wang-hao-jie
2022-01-07 0f2202dfcea3309c1b0e7515f6db5fbdc83d51d1
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package cn.exrick.xboot.core.vo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * @author Exrickx
 */
@Data
public class AutoChatSetting implements Serializable {
 
    @ApiModelProperty(value = "对话框标题")
    private String title;
 
    @ApiModelProperty(value = "机器人头像")
    private String avatar;
 
    @ApiModelProperty(value = "初始化系统消息")
    private String sysMessage;
 
    @ApiModelProperty(value = "初始化消息")
    private String welcomeMessage;
 
    @ApiModelProperty(value = "初始化富文本消息")
    private String initMessage;
 
    @ApiModelProperty(value = "快捷短语")
    private String quickReplies;
 
    @ApiModelProperty(value = "输入框占位符")
    private String placeholder;
 
    @ApiModelProperty(value = "右侧公告类型")
    private String noticeType;
 
    @ApiModelProperty(value = "右侧公告标题")
    private String noticeTitle;
 
    @ApiModelProperty(value = "右侧公告内容")
    private String noticeContent;
 
    @ApiModelProperty(value = "点赞后显示的文本")
    private String textOfGood;
 
    @ApiModelProperty(value = "点踩后显示的文本")
    private String textOfBad;
 
    @ApiModelProperty(value = "未找到匹配回答答复")
    private String noDataReply;
}