liusheng
2024-04-30 01a79d5b431b71cc79cf5f6cc92cd4f3432781dd
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
package com.smartor.domain;
 
import java.util.Date;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
 
/**
 * 模版问题指标库对象 ivr_liba_template_target
 *
 * @author ruoyi
 * @date 2023-12-23
 */
@Data
@ApiModel(value = "IvrLibaTemplateTarget", description = "模版问题指标库对象")
public class IvrLibaTemplateTarget extends BaseEntity {
    private static final long serialVersionUID = 1L;
 
    /**
     * 模板指标ID
     */
    @ApiModelProperty(value = "模板指标ID")
    private Long id;
 
    /**
     * 模板话术ID
     */
    @Excel(name = "模板话术ID")
    @ApiModelProperty(value = "模板话术ID")
    private Long templateQuestionID;
 
    /**
     * 模板话术编号
     */
    @Excel(name = "模板话术编号")
    @ApiModelProperty(value = "模板话术编号")
    private Long templateQuestionNum;
 
    /**
     * 下一个话术编号
     */
    @Excel(name = "下一个话术编号")
    @ApiModelProperty(value = "下一个话术编号")
    private Long nextQuestionNum;
 
    /**
     * 模板ID
     */
    @Excel(name = "模板ID")
    @ApiModelProperty(value = "模板ID")
    private Long templateID;
 
    /**
     * 节点ID
     */
    @Excel(name = "节点ID")
    @ApiModelProperty(value = "节点ID")
    private Long switchID;
 
    /**
     * 节点描述
     */
    @Excel(name = "节点描述")
    @ApiModelProperty(value = "节点描述")
    private String switchDescription;
 
    /**
     * 节点内容
     */
    @Excel(name = "节点内容")
    @ApiModelProperty(value = "节点内容")
    private String switchText;
 
    /**
     * 节点的WAV格式
     */
    @Excel(name = "节点的WAV格式")
    @ApiModelProperty(value = "节点的WAV格式")
    private String switchWav;
 
    /**
     * 节点待匹配语音
     */
    @Excel(name = "节点待匹配语音")
    @ApiModelProperty(value = "节点待匹配语音")
    private String switchTempWav;
 
    /**
     * 指标类型
     */
    @Excel(name = "指标类型")
    @ApiModelProperty(value = "指标类型")
    private String targetType;
 
    /**
     * 分类名
     */
    @Excel(name = "分类名")
    @ApiModelProperty(value = "分类名")
    private String categoryName;
 
    /**
     * 指标值
     */
    @Excel(name = "指标值")
    @ApiModelProperty(value = "指标值")
    private String targetValue;
 
    /**
     * 指标ID
     */
    @Excel(name = "指标ID")
    @ApiModelProperty(value = "指标ID")
    private String targetid;
 
    /**
     * 话术指标ID
     */
    @Excel(name = "话术指标ID")
    @ApiModelProperty(value = "话术指标ID")
    private String questionTargetid;
 
    /**
     * 基础正则
     */
    @Excel(name = "基础正则")
    @ApiModelProperty(value = "基础正则")
    private String basicRegex;
 
    /**
     * 自身正则
     */
    @Excel(name = "自身正则")
    @ApiModelProperty(value = "自身正则")
    private String selfRegex;
 
    /**
     * 正则使用类型
     */
    @Excel(name = "正则使用类型")
    @ApiModelProperty(value = "正则使用类型")
    private String regexUsedType;
 
    /**
     * 语言
     */
    @Excel(name = "语言")
    @ApiModelProperty(value = "语言")
    private String language;
 
    /**
     * 值类型(1 选项  2 文本  3 数值)
     */
    @Excel(name = "值类型", readConverterExp = "1=,选=项,2=,文=本,3=,数=值")
    @ApiModelProperty(value = "值类型(1 选项  2 文本  3 数值)")
    private Long isEnable;
 
    /**
     * 播报类型 0.语音优先 1.文字优先
     */
    @Excel(name = "播报类型 0.语音优先 1.文字优先")
    @ApiModelProperty(value = "播报类型 0.语音优先 1.文字优先")
    private Long playType;
 
    /**
     * 删除标记
     */
    @ApiModelProperty(value = "删除标记")
    private String delFlag;
 
    /**
     * 上传标记
     */
    @Excel(name = " 上传标记 ")
    @ApiModelProperty(value = "上传标记")
    private Long isupload;
 
    /**
     * 上传时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = " 上传时间 ", width = 30, dateFormat = "yyyy-MM-dd")
    @ApiModelProperty(value = "上传时间")
    private Date uploadTime;
 
    /**
     * 机构ID
     */
    @Excel(name = " 机构ID ")
    @ApiModelProperty(value = "机构ID")
    private String orgid;
 
    /**
     * 父ID
     */
    @Excel(name = "父ID")
    @ApiModelProperty(value = "父ID")
    private Long pid;
 
    /**
     * GUID
     */
    @Excel(name = "GUID")
    @ApiModelProperty(value = "GUID")
    private String guid;
 
    /**
     * 是否存在操作:1 新增 2修改 3删除
     */
    @ApiModelProperty(value = "是否存在操作:1 新增 2修改 3删除")
    private Integer isoperation;
 
}