| | |
| | | package com.smartor.domain; |
| | | |
| | | import com.alibaba.fastjson.JSON; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.common.annotation.Excel; |
| | | import com.ruoyi.common.core.domain.BaseEntity; |
| | |
| | | */ |
| | | @Data |
| | | @ApiModel(value = "IvrLibaTargetVO", description = "指标库对象返参") |
| | | public class IvrLibaTargetVO { |
| | | public class IvrLibaTargetVO extends BaseEntity { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @ApiModelProperty(value = "主键") |
| | | private Long targetID; |
| | | private Long id; |
| | | |
| | | /** |
| | | * 分组ID |
| | |
| | | @Excel(name = "分组ID") |
| | | @ApiModelProperty(value = "分组ID") |
| | | private String groupid; |
| | | |
| | | /** |
| | | * 适用题型(单选、多选、埴空、组合) |
| | | */ |
| | | @Excel(name = "适用题型(单选、多选、埴空、组合)") |
| | | @ApiModelProperty(value = "适用题型(单选、多选、埴空、组合)") |
| | | private String scriptType; |
| | | |
| | | /** |
| | | * 指标类型 |
| | |
| | | * 值类型(1 选项 2 文本 3 数值) |
| | | */ |
| | | @ApiModelProperty(value = "值类型(1 选项 2 文本 3 数值)") |
| | | @Excel(name = "值类型", readConverterExp = "1=,选=项,2=,文=本,3=,数=值") |
| | | private Long isenable; |
| | | @Excel(name = "值类型", readConverterExp = "1=选项,2文本,3数值") |
| | | private Long valueType; |
| | | |
| | | /** |
| | | * 是否异常标识 |
| | |
| | | @Excel(name = "适用方式") |
| | | @ApiModelProperty(value = "适用方式") |
| | | private String suitWay; |
| | | |
| | | @Excel(name = "适用方式(多选)") |
| | | @ApiModelProperty(value = "适用方式(多选)") |
| | | private List<String> suitWayList; |
| | | |
| | | /** |
| | | * pageNum |
| | | */ |
| | |
| | | private List<IvrLibaTargetoption> targetoptionList = new ArrayList<>(); |
| | | |
| | | @ApiModelProperty(value = "标签集合") |
| | | private List<BaseTag> baseTagList = new ArrayList<>(); |
| | | private List<IvrLibaTargetTag> ivrLibaTargetTagList = new ArrayList<>(); |
| | | |
| | | @ApiModelProperty(value = "回复(指问题的回复,给问答题用的)") |
| | | private String reply; |
| | | |
| | | /** |
| | | * 说话内容 |
| | | */ |
| | | @Excel(name = "说话内容") |
| | | @ApiModelProperty(value = "说话内容") |
| | | private String content; |
| | | |
| | | @ApiModelProperty(value = "用于查询标签的,不用于存数据") |
| | | private String optionDesc; |
| | | } |