liusheng
2024-04-17 69123c8bf13ccb27539b0475e626c6c95c0ea6bb
smartor/src/main/java/com/smartor/domain/IvrLibaTemplateScriptVO.java
@@ -7,6 +7,7 @@
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
@@ -216,7 +217,7 @@
    /**
     * 基础指标id
     */
    @ApiModelProperty(value = "基础指标id")
    @ApiModelProperty(value = "基础指标id(暂时当本题序号)")
    private Integer targetid;
@@ -227,8 +228,28 @@
    private Integer targetValue;
    /**
     * 标题
     */
    @Excel(name = "标题")
    @ApiModelProperty(value = "标题")
    private String questiontitle;
    /**
     * 下一题
     */
    @ApiModelProperty(value = "下一题")
    private Integer nextQuestion;
    /**
     * 标签
     */
    @Excel(name = "其它数据(存储变量)")
    @ApiModelProperty(value = "其它数据(存储变量)")
    private String otherdata;
    /**
     * 话术选项
     */
    @ApiModelProperty(value = "话术选项")
    private List<IvrLibaTemplateTargetoption> ivrLibaTemplateTargetoptionList;
    private List<IvrLibaTemplateTargetoption> ivrLibaScriptTargetoptionList = new ArrayList<>();
}