package com.smartor.domain; 
 | 
  
 | 
import java.util.Date; 
 | 
import com.fasterxml.jackson.annotation.JsonFormat; 
 | 
import org.apache.commons.lang3.builder.ToStringBuilder; 
 | 
import org.apache.commons.lang3.builder.ToStringStyle; 
 | 
import com.ruoyi.common.annotation.Excel; 
 | 
import com.ruoyi.common.core.domain.BaseEntity; 
 | 
  
 | 
/** 
 | 
 * 话术库对象 ivr_liba_script 
 | 
 *  
 | 
 * @author smartor 
 | 
 * @date 2023-03-22 
 | 
 */ 
 | 
public class IvrLibaScript extends BaseEntity 
 | 
{ 
 | 
    private static final long serialVersionUID = 1L; 
 | 
  
 | 
    /**    */ 
 | 
    private String questionid; 
 | 
  
 | 
    /**    */ 
 | 
    @Excel(name = "  ") 
 | 
    private String questionpoint; 
 | 
  
 | 
    /**    */ 
 | 
    @Excel(name = "  ") 
 | 
    private String questiontext; 
 | 
  
 | 
    /**    */ 
 | 
    @Excel(name = "  ") 
 | 
    private String questionvoice; 
 | 
  
 | 
    /**    */ 
 | 
    @Excel(name = "  ") 
 | 
    private String nomatchtext; 
 | 
  
 | 
    /**    */ 
 | 
    @Excel(name = "  ") 
 | 
    private String nomatchvoice; 
 | 
  
 | 
    /**    */ 
 | 
    @Excel(name = "  ") 
 | 
    private String sliencetext; 
 | 
  
 | 
    /**    */ 
 | 
    @Excel(name = "  ") 
 | 
    private String sliencevoice; 
 | 
  
 | 
    /**    */ 
 | 
    @Excel(name = "  ") 
 | 
    private String submoduletext; 
 | 
  
 | 
    /**    */ 
 | 
    @Excel(name = "  ") 
 | 
    private String submodulevoice; 
 | 
  
 | 
    /**    */ 
 | 
    @Excel(name = "  ") 
 | 
    private String noclearlytext; 
 | 
  
 | 
    /**    */ 
 | 
    @Excel(name = "  ") 
 | 
    private String noclearlyvoice; 
 | 
  
 | 
    /**    */ 
 | 
    @Excel(name = "  ") 
 | 
    private String questiontype; 
 | 
  
 | 
    /**    */ 
 | 
    @Excel(name = "  ") 
 | 
    private String categoryname; 
 | 
  
 | 
    /**    */ 
 | 
    @Excel(name = "  ") 
 | 
    private String targetoptions; 
 | 
  
 | 
    /**    */ 
 | 
    @Excel(name = "  ") 
 | 
    private String language; 
 | 
  
 | 
    /**    */ 
 | 
    @Excel(name = "  ") 
 | 
    private Long version; 
 | 
  
 | 
    /**    */ 
 | 
    @Excel(name = "  ") 
 | 
    private Long isenable; 
 | 
  
 | 
    /**    */ 
 | 
    @Excel(name = "  ") 
 | 
    private Long isdel; 
 | 
  
 | 
    /**    */ 
 | 
    @Excel(name = "  ") 
 | 
    private String adduserid; 
 | 
  
 | 
    /**    */ 
 | 
    @JsonFormat(pattern = "yyyy-MM-dd") 
 | 
    @Excel(name = "  ", width = 30, dateFormat = "yyyy-MM-dd") 
 | 
    private Date addtime; 
 | 
  
 | 
    /**    */ 
 | 
    @Excel(name = "  ") 
 | 
    private String modifyuserid; 
 | 
  
 | 
    /**    */ 
 | 
    @JsonFormat(pattern = "yyyy-MM-dd") 
 | 
    @Excel(name = "  ", width = 30, dateFormat = "yyyy-MM-dd") 
 | 
    private Date modifytime; 
 | 
  
 | 
    /**    */ 
 | 
    @Excel(name = "  ") 
 | 
    private String groupid; 
 | 
  
 | 
    /**  删除标记  */ 
 | 
    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 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 setQuestiontype(String questiontype)  
 | 
    { 
 | 
        this.questiontype = questiontype; 
 | 
    } 
 | 
  
 | 
    public String getQuestiontype()  
 | 
    { 
 | 
        return questiontype; 
 | 
    } 
 | 
    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 setVersion(Long version)  
 | 
    { 
 | 
        this.version = version; 
 | 
    } 
 | 
  
 | 
    public Long getVersion()  
 | 
    { 
 | 
        return version; 
 | 
    } 
 | 
    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 setAdduserid(String adduserid)  
 | 
    { 
 | 
        this.adduserid = adduserid; 
 | 
    } 
 | 
  
 | 
    public String getAdduserid()  
 | 
    { 
 | 
        return adduserid; 
 | 
    } 
 | 
    public void setAddtime(Date addtime)  
 | 
    { 
 | 
        this.addtime = addtime; 
 | 
    } 
 | 
  
 | 
    public Date getAddtime()  
 | 
    { 
 | 
        return addtime; 
 | 
    } 
 | 
    public void setModifyuserid(String modifyuserid)  
 | 
    { 
 | 
        this.modifyuserid = modifyuserid; 
 | 
    } 
 | 
  
 | 
    public String getModifyuserid()  
 | 
    { 
 | 
        return modifyuserid; 
 | 
    } 
 | 
    public void setModifytime(Date modifytime)  
 | 
    { 
 | 
        this.modifytime = modifytime; 
 | 
    } 
 | 
  
 | 
    public Date getModifytime()  
 | 
    { 
 | 
        return modifytime; 
 | 
    } 
 | 
    public void setGroupid(String groupid)  
 | 
    { 
 | 
        this.groupid = groupid; 
 | 
    } 
 | 
  
 | 
    public String getGroupid()  
 | 
    { 
 | 
        return groupid; 
 | 
    } 
 | 
    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("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("questiontype", getQuestiontype()) 
 | 
            .append("categoryname", getCategoryname()) 
 | 
            .append("targetoptions", getTargetoptions()) 
 | 
            .append("language", getLanguage()) 
 | 
            .append("description", getDescription()) 
 | 
            .append("version", getVersion()) 
 | 
            .append("isenable", getIsenable()) 
 | 
            .append("isdel", getIsdel()) 
 | 
            .append("adduserid", getAdduserid()) 
 | 
            .append("addtime", getAddtime()) 
 | 
            .append("modifyuserid", getModifyuserid()) 
 | 
            .append("modifytime", getModifytime()) 
 | 
            .append("groupid", getGroupid()) 
 | 
            .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(); 
 | 
    } 
 | 
} 
 |