liusheng
2025-04-22 f8c4acf0b173a73163c0f101e38c0e60251a2935
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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
package com.smartor.domain;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
 
/**
 * 模板指标选项库对象 ivr_liba_template_targetoption
 *
 * @author ruoyi
 * @date 2023-12-23
 */
@Data
@ApiModel(value = "IvrLibaTemplateTargetoption", description = "模板指标选项库对象")
public class IvrLibaTemplateTargetoption extends BaseEntity {
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键
     */
    @ApiModelProperty(value = "主键")
    private Long id;
 
    /**
     * 模板指标ID
     */
    @Excel(name = "模板指标ID")
    @ApiModelProperty(value = "模板指标ID")
    private Long targetid;
 
    /**
     * 指标名称
     */
    @Excel(name = "指标名称")
    @ApiModelProperty(value = "指标名称")
    private String targetname;
 
    /**
     * 选中提示
     */
    @Excel(name = "选中提示")
    @ApiModelProperty(value = "选中提示")
    private String prompt;
 
    /**
     * 模板ID
     */
    @Excel(name = "模板ID")
    @ApiModelProperty(value = "模板ID")
    private Long templateID;
 
    /**
     * 话术ID
     */
    @Excel(name = "话术ID")
    @ApiModelProperty(value = "话术ID")
    private Long scriptid;
 
    /**
     * 模板指标类型
     */
    @Excel(name = "模板指标类型")
    @ApiModelProperty(value = "模板指标类型")
    private String targettype;
 
    /**
     * 类别名称
     */
    @Excel(name = "类别名称")
    @ApiModelProperty(value = "类别名称")
    private String categoryName = null;
 
    /**
     * 模板指标值
     */
    @Excel(name = "模板指标值")
    @ApiModelProperty(value = "模板指标值")
    private String targetvalue;
 
    /**
     * 模板指标正则
     */
    @Excel(name = "模板指标正则")
    @ApiModelProperty(value = "模板指标正则")
    private String targetregex;
 
    /**
     * 模板指标正则
     */
    @Excel(name = "模板指标正则2")
    @ApiModelProperty(value = "模板指标正则2")
    private String targetregex2;
 
    @Excel(name = "正则关键字集合(含)")
    private String nodynamiccruxsJson;
 
    @Excel(name = "正则关键字集合(不含)")
    private String dynamiccruxsJson;
 
    @ApiModelProperty(value = "正则关键字(含)")
    @Excel(name = "正则关键字(含)")
    private List<String> nodynamiccruxs = new ArrayList<>();
 
    @ApiModelProperty(value = "正则关键字(不含)")
    @Excel(name = "正则关键字(不含)")
    private List<String> dynamiccruxs = new ArrayList<>();
 
    /**
     * 选项描述
     */
    @Excel(name = "选项描述")
    @ApiModelProperty(value = "选项描述")
    private String optiondesc;
 
    /**
     * 语言
     */
    @Excel(name = "语言")
    @ApiModelProperty(value = "语言")
    private String language;
 
    /**
     * 版本
     */
    @Excel(name = "版本")
    @ApiModelProperty(value = "版本")
    private String version;
 
    /**
     * 分组ID
     */
    @Excel(name = "分组ID")
    @ApiModelProperty(value = "分组ID")
    private String groupid;
 
    /**
     * 是否异常标识
     */
    @Excel(name = "是否异常标识")
    @ApiModelProperty(value = "是否异常标识")
    private Long isabnormal;
 
    /**
     * 是否异常标识
     */
    @Excel(name = "是否异常标识")
    @ApiModelProperty(value = "是否异常标识")
    private BigDecimal score;
 
//    /**
//     * 预警阀值上限
//     */
//    @Excel(name = "预警阀值上限")
//    @ApiModelProperty(value = "预警阀值上限")
//    private Long warnup;
//
//    /**
//     * 预警阀值下限
//     */
//    @Excel(name = "预警阀值下限")
//    @ApiModelProperty(value = "预警阀值下限")
//    private Long warndown;
 
    /**
     * 删除标记
     */
    @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;
 
    /**
     * 选项续号
     */
    @Excel(name = "选项续号")
    @ApiModelProperty(value = "选项续号")
    private Long optionNo;
 
    /**
     * GUID
     */
    @Excel(name = "GUID")
    @ApiModelProperty(value = "GUID")
    private String guid;
 
    /**
     * 是否存在操作:1 新增 2修改 3删除
     */
    @ApiModelProperty(value = "是否存在操作:1 新增 2修改 3删除")
    private Integer isoperation;
 
    /**
     * 是否是用户选择的选项
     */
    @ApiModelProperty(value = "是否是用户选择的选项")
    private Integer isUserOperation = 0;
 
    /**
     * 下一题
     */
    @ApiModelProperty(value = "下一题")
    private Integer nextQuestion;
 
    @ApiModelProperty(value = "选项附加标识")
    private String appendflag;
 
    @ApiModelProperty(value = "附件信息")
    private String appenddesc;
 
    @ApiModelProperty(value = "是否结束 0:不结束   1:结束")
    private Integer isEnd;
 
 
}