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_scripttarget
|
*
|
* @author smartor
|
* @date 2023-03-22
|
*/
|
public class IvrLibaScripttarget extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** $column.columnComment */
|
private String questionTargetID;
|
|
/** $column.columnComment */
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
private String questionID;
|
|
/** $column.columnComment */
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
private String targetID;
|
|
/** $column.columnComment */
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
private String targetType;
|
|
/** $column.columnComment */
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
private String categoryName;
|
|
/** $column.columnComment */
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
private String targetValue;
|
|
/** $column.columnComment */
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
private String basicRegex;
|
|
/** $column.columnComment */
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
private String selfRegex;
|
|
/** $column.columnComment */
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
private String regexUsedType;
|
|
/** $column.columnComment */
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
private Long sort;
|
|
/** $column.columnComment */
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
private Long version;
|
|
/** $column.columnComment */
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
private Long isEnable;
|
|
/** $column.columnComment */
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
private Long isDel;
|
|
/** $column.columnComment */
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
private String tipsJson;
|
|
/** 删除标记 */
|
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 setQuestionTargetID(String questionTargetID)
|
{
|
this.questionTargetID = questionTargetID;
|
}
|
|
public String getQuestionTargetID()
|
{
|
return questionTargetID;
|
}
|
public void setQuestionID(String questionID)
|
{
|
this.questionID = questionID;
|
}
|
|
public String getQuestionID()
|
{
|
return questionID;
|
}
|
public void setTargetID(String targetID)
|
{
|
this.targetID = targetID;
|
}
|
|
public String getTargetID()
|
{
|
return targetID;
|
}
|
public void setTargetType(String targetType)
|
{
|
this.targetType = targetType;
|
}
|
|
public String getTargetType()
|
{
|
return targetType;
|
}
|
public void setCategoryName(String categoryName)
|
{
|
this.categoryName = categoryName;
|
}
|
|
public String getCategoryName()
|
{
|
return categoryName;
|
}
|
public void setTargetValue(String targetValue)
|
{
|
this.targetValue = targetValue;
|
}
|
|
public String getTargetValue()
|
{
|
return targetValue;
|
}
|
public void setBasicRegex(String basicRegex)
|
{
|
this.basicRegex = basicRegex;
|
}
|
|
public String getBasicRegex()
|
{
|
return basicRegex;
|
}
|
public void setSelfRegex(String selfRegex)
|
{
|
this.selfRegex = selfRegex;
|
}
|
|
public String getSelfRegex()
|
{
|
return selfRegex;
|
}
|
public void setRegexUsedType(String regexUsedType)
|
{
|
this.regexUsedType = regexUsedType;
|
}
|
|
public String getRegexUsedType()
|
{
|
return regexUsedType;
|
}
|
public void setSort(Long sort)
|
{
|
this.sort = sort;
|
}
|
|
public Long getSort()
|
{
|
return sort;
|
}
|
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 setTipsJson(String tipsJson)
|
{
|
this.tipsJson = tipsJson;
|
}
|
|
public String getTipsJson()
|
{
|
return tipsJson;
|
}
|
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("questionTargetID", getQuestionTargetID())
|
.append("questionID", getQuestionID())
|
.append("targetID", getTargetID())
|
.append("targetType", getTargetType())
|
.append("categoryName", getCategoryName())
|
.append("targetValue", getTargetValue())
|
.append("basicRegex", getBasicRegex())
|
.append("selfRegex", getSelfRegex())
|
.append("regexUsedType", getRegexUsedType())
|
.append("sort", getSort())
|
.append("version", getVersion())
|
.append("isEnable", getIsEnable())
|
.append("isDel", getIsDel())
|
.append("tipsJson", getTipsJson())
|
.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();
|
}
|
}
|