liusheng
2024-04-24 01c9667cfb06970564e837dc343d5cee0eb3aed7
smartor/src/main/java/com/smartor/domain/IvrLibaTemplateScriptVO.java
@@ -217,7 +217,7 @@
    /**
     * 基础指标id
     */
    @ApiModelProperty(value = "基础指标id")
    @ApiModelProperty(value = "基础指标id(暂时当本题序号)")
    private Integer targetid;
@@ -228,8 +228,35 @@
    private Integer targetValue;
    /**
     * 标题
     */
    @Excel(name = "标题")
    @ApiModelProperty(value = "标题")
    private String questiontitle;
    /**
     * 下一题
     */
    @ApiModelProperty(value = "下一题")
    private Integer nextQuestion;
    /**
     * 标签
     */
    @Excel(name = "其它数据(存储变量)")
    @ApiModelProperty(value = "其它数据(存储变量)")
    private String otherdata;
    /**
     * 是否必填(给人工用的,AI不用遵守)
     */
    @Excel(name = "是否必填(给人工用的,AI不用遵守)")
    @ApiModelProperty(value = "是否必填(给人工用的,AI不用遵守)")
    private String isMust;
    /**
     * 话术选项
     */
    @ApiModelProperty(value = "话术选项")
    private List<IvrLibaTemplateTargetoption> ivrLibaTemplateTargetoptionList = new ArrayList<>();
    private List<IvrLibaTemplateTargetoption> ivrLibaScriptTargetoptionList = new ArrayList<>();
}