| | |
| | | |
| | | 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; |
| | |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | @Data |
| | | @ApiModel(value = "IvrLibaTemplatescript", description = "话术模板库话术对象") |
| | | public class IvrLibaTemplatescript extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** $column.columnComment */ |
| | | @ApiModelProperty(value = "templateQuestionID") |
| | | private String templateQuestionID; |
| | | |
| | | /** $column.columnComment */ |
| | | @ApiModelProperty(value = "templateQuestionNum") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long templateQuestionNum; |
| | | |
| | | /** $column.columnComment */ |
| | | @ApiModelProperty(value = "templateID") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String templateID; |
| | | |
| | | /** $column.columnComment */ |
| | | @ApiModelProperty(value = "questionID") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String questionID; |
| | | |
| | | /** $column.columnComment */ |
| | | @ApiModelProperty(value = "questionPoint") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String questionPoint; |
| | | |
| | | /** $column.columnComment */ |
| | | @ApiModelProperty(value = "questionText") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String questionText; |
| | | |
| | | /** $column.columnComment */ |
| | | @ApiModelProperty(value = "questionVoice") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String questionVoice; |
| | | |
| | | /** $column.columnComment */ |
| | | @ApiModelProperty(value = "noMatchText") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String noMatchText; |
| | | |
| | | /** $column.columnComment */ |
| | | @ApiModelProperty(value = "noMatchVoice") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String noMatchVoice; |
| | | |
| | | /** $column.columnComment */ |
| | | @ApiModelProperty(value = "slienceText") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String slienceText; |
| | | |
| | | /** $column.columnComment */ |
| | | @ApiModelProperty(value = "slienceVoice") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String slienceVoice; |
| | | |
| | | /** $column.columnComment */ |
| | | @ApiModelProperty(value = "submoduleText") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String submoduleText; |
| | | |
| | | /** $column.columnComment */ |
| | | @ApiModelProperty(value = "submoduleVoice") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String submoduleVoice; |
| | | |
| | | /** $column.columnComment */ |
| | | @ApiModelProperty(value = "noClearlyText") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String noClearlyText; |
| | | |
| | | /** $column.columnComment */ |
| | | @ApiModelProperty(value = "noClearlyVoice") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String noClearlyVoice; |
| | | |
| | | /** $column.columnComment */ |
| | | @ApiModelProperty(value = "类别名") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String categoryName; |
| | | |
| | | /** $column.columnComment */ |
| | | @ApiModelProperty(value = "指标选项") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String targetOptions; |
| | | |
| | | /** $column.columnComment */ |
| | | @ApiModelProperty(value = "语言") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String language; |
| | | |
| | | /** $column.columnComment */ |
| | | @ApiModelProperty(value = "playWavOnly") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long playWavOnly; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long isEnable; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long isDel; |
| | | |
| | | /** 删除标记 */ |
| | | private String delFlag; |
| | | |
| | | /** 上传标记 */ |
| | | @Excel(name = " 上传标记 ") |
| | | private Long isupload; |
| | | |
| | | /** 上传时间 */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " 上传时间 ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date uploadTime; |
| | | |
| | | /** 机构ID */ |
| | | @Excel(name = " 机构ID ") |
| | | private String orgid; |
| | | |
| | | public void setTemplateQuestionID(String templateQuestionID) |
| | | { |
| | | this.templateQuestionID = templateQuestionID; |
| | | } |
| | | |
| | | public String getTemplateQuestionID() |
| | | { |
| | | return templateQuestionID; |
| | | } |
| | | public void setTemplateQuestionNum(Long templateQuestionNum) |
| | | { |
| | | this.templateQuestionNum = templateQuestionNum; |
| | | } |
| | | |
| | | public Long getTemplateQuestionNum() |
| | | { |
| | | return templateQuestionNum; |
| | | } |
| | | public void setTemplateID(String templateID) |
| | | { |
| | | this.templateID = templateID; |
| | | } |
| | | |
| | | public String getTemplateID() |
| | | { |
| | | return templateID; |
| | | } |
| | | public void setQuestionID(String questionID) |
| | | { |
| | | this.questionID = questionID; |
| | | } |
| | | |
| | | public String getQuestionID() |
| | | { |
| | | return questionID; |
| | | } |
| | | public void setQuestionPoint(String questionPoint) |
| | | { |
| | | this.questionPoint = questionPoint; |
| | | } |
| | | |
| | | public String getQuestionPoint() |
| | | { |
| | | return questionPoint; |
| | | } |
| | | public void setQuestionText(String questionText) |
| | | { |
| | | this.questionText = questionText; |
| | | } |
| | | |
| | | public String getQuestionText() |
| | | { |
| | | return questionText; |
| | | } |
| | | public void setQuestionVoice(String questionVoice) |
| | | { |
| | | this.questionVoice = questionVoice; |
| | | } |
| | | |
| | | public String getQuestionVoice() |
| | | { |
| | | return questionVoice; |
| | | } |
| | | public void setNoMatchText(String noMatchText) |
| | | { |
| | | this.noMatchText = noMatchText; |
| | | } |
| | | |
| | | public String getNoMatchText() |
| | | { |
| | | return noMatchText; |
| | | } |
| | | public void setNoMatchVoice(String noMatchVoice) |
| | | { |
| | | this.noMatchVoice = noMatchVoice; |
| | | } |
| | | |
| | | public String getNoMatchVoice() |
| | | { |
| | | return noMatchVoice; |
| | | } |
| | | public void setSlienceText(String slienceText) |
| | | { |
| | | this.slienceText = slienceText; |
| | | } |
| | | |
| | | public String getSlienceText() |
| | | { |
| | | return slienceText; |
| | | } |
| | | public void setSlienceVoice(String slienceVoice) |
| | | { |
| | | this.slienceVoice = slienceVoice; |
| | | } |
| | | |
| | | public String getSlienceVoice() |
| | | { |
| | | return slienceVoice; |
| | | } |
| | | public void setSubmoduleText(String submoduleText) |
| | | { |
| | | this.submoduleText = submoduleText; |
| | | } |
| | | |
| | | public String getSubmoduleText() |
| | | { |
| | | return submoduleText; |
| | | } |
| | | public void setSubmoduleVoice(String submoduleVoice) |
| | | { |
| | | this.submoduleVoice = submoduleVoice; |
| | | } |
| | | |
| | | public String getSubmoduleVoice() |
| | | { |
| | | return submoduleVoice; |
| | | } |
| | | public void setNoClearlyText(String noClearlyText) |
| | | { |
| | | this.noClearlyText = noClearlyText; |
| | | } |
| | | |
| | | public String getNoClearlyText() |
| | | { |
| | | return noClearlyText; |
| | | } |
| | | public void setNoClearlyVoice(String noClearlyVoice) |
| | | { |
| | | this.noClearlyVoice = noClearlyVoice; |
| | | } |
| | | |
| | | public String getNoClearlyVoice() |
| | | { |
| | | return noClearlyVoice; |
| | | } |
| | | public void setCategoryName(String categoryName) |
| | | { |
| | | this.categoryName = categoryName; |
| | | } |
| | | |
| | | public String getCategoryName() |
| | | { |
| | | return categoryName; |
| | | } |
| | | public void setTargetOptions(String targetOptions) |
| | | { |
| | | this.targetOptions = targetOptions; |
| | | } |
| | | |
| | | public String getTargetOptions() |
| | | { |
| | | return targetOptions; |
| | | } |
| | | public void setLanguage(String language) |
| | | { |
| | | this.language = language; |
| | | } |
| | | |
| | | public String getLanguage() |
| | | { |
| | | return language; |
| | | } |
| | | public void setPlayWavOnly(Long playWavOnly) |
| | | { |
| | | this.playWavOnly = playWavOnly; |
| | | } |
| | | |
| | | public Long getPlayWavOnly() |
| | | { |
| | | return playWavOnly; |
| | | } |
| | | public void setIsEnable(Long isEnable) |
| | | { |
| | | this.isEnable = isEnable; |
| | | } |
| | | |
| | | public Long getIsEnable() |
| | | { |
| | | return isEnable; |
| | | } |
| | | public void setIsDel(Long isDel) |
| | | { |
| | | this.isDel = isDel; |
| | | } |
| | | |
| | | public Long getIsDel() |
| | | { |
| | | return isDel; |
| | | } |
| | | public void setDelFlag(String delFlag) |
| | | { |
| | | this.delFlag = delFlag; |
| | | } |
| | | |
| | | public String getDelFlag() |
| | | { |
| | | return delFlag; |
| | | } |
| | | public void setIsupload(Long isupload) |
| | | { |
| | | this.isupload = isupload; |
| | | } |
| | | |
| | | public Long getIsupload() |
| | | { |
| | | return isupload; |
| | | } |
| | | public void setUploadTime(Date uploadTime) |
| | | { |
| | | this.uploadTime = uploadTime; |
| | | } |
| | | |
| | | public Date getUploadTime() |
| | | { |
| | | return uploadTime; |
| | | } |
| | | public void setOrgid(String orgid) |
| | | { |
| | | this.orgid = orgid; |
| | | } |
| | | |
| | | public String getOrgid() |
| | | { |
| | | return orgid; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("templateQuestionID", getTemplateQuestionID()) |
| | | .append("templateQuestionNum", getTemplateQuestionNum()) |
| | | .append("templateID", getTemplateID()) |
| | | .append("questionID", getQuestionID()) |
| | | .append("questionPoint", getQuestionPoint()) |
| | | .append("questionText", getQuestionText()) |
| | | .append("questionVoice", getQuestionVoice()) |
| | | .append("noMatchText", getNoMatchText()) |
| | | .append("noMatchVoice", getNoMatchVoice()) |
| | | .append("slienceText", getSlienceText()) |
| | | .append("slienceVoice", getSlienceVoice()) |
| | | .append("submoduleText", getSubmoduleText()) |
| | | .append("submoduleVoice", getSubmoduleVoice()) |
| | | .append("noClearlyText", getNoClearlyText()) |
| | | .append("noClearlyVoice", getNoClearlyVoice()) |
| | | .append("categoryName", getCategoryName()) |
| | | .append("targetOptions", getTargetOptions()) |
| | | .append("language", getLanguage()) |
| | | .append("playWavOnly", getPlayWavOnly()) |
| | | .append("isEnable", getIsEnable()) |
| | | .append("isDel", getIsDel()) |
| | | .append("delFlag", getDelFlag()) |
| | | .append("updateBy", getUpdateBy()) |
| | | .append("updateTime", getUpdateTime()) |
| | | .append("createBy", getCreateBy()) |
| | | .append("createTime", getCreateTime()) |
| | | .append("isupload", getIsupload()) |
| | | .append("uploadTime", getUploadTime()) |
| | | .append("orgid", getOrgid()) |
| | | .toString(); |
| | | } |
| | | } |