package com.smartor.domain;
|
|
import java.util.ArrayList;
|
import java.util.Date;
|
import java.util.List;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.google.gson.Gson;
|
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;
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
/**
|
* 模板指标选项库对象 ivr_liba_template_targetoption
|
*
|
* @author ruoyi
|
* @date 2023-12-23
|
*/
|
@ApiModel(value = "IvrLibaTemplateTargetoption", description = "模板指标选项库对象")
|
public class IvrLibaTemplateTargetoption extends BaseEntity {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键
|
*/
|
@ApiModelProperty(value = "主键")
|
private Long id;
|
|
/**
|
* 模板指标ID
|
*/
|
@Excel(name = "模板指标ID")
|
@ApiModelProperty(value = "模板指标ID")
|
private Long targetid;
|
|
/**
|
* 指标名称
|
*/
|
@Excel(name = "指标名称")
|
@ApiModelProperty(value = "指标名称")
|
private String targetname;
|
|
/**
|
* 模板ID
|
*/
|
@Excel(name = "模板ID")
|
@ApiModelProperty(value = "模板ID")
|
private Long templateID;
|
|
/**
|
* 话术ID
|
*/
|
@Excel(name = "话术ID")
|
@ApiModelProperty(value = "话术ID")
|
private Long scriptid;
|
|
/**
|
* 模板指标类型
|
*/
|
@Excel(name = "模板指标类型")
|
@ApiModelProperty(value = "模板指标类型")
|
private String targettype;
|
|
/**
|
* 类别名称
|
*/
|
@Excel(name = "类别名称")
|
@ApiModelProperty(value = "类别名称")
|
private String categoryName = null;
|
|
/**
|
* 模板指标值
|
*/
|
@Excel(name = "模板指标值")
|
@ApiModelProperty(value = "模板指标值")
|
private String targetvalue;
|
|
/**
|
* 模板指标正则
|
*/
|
@Excel(name = "模板指标正则")
|
@ApiModelProperty(value = "模板指标正则")
|
private String targetregex;
|
|
/**
|
* 模板指标正则
|
*/
|
@Excel(name = "模板指标正则2")
|
@ApiModelProperty(value = "模板指标正则2")
|
private String targetregex2;
|
|
@Excel(name = "正则关键字集合(含)")
|
private String nodynamiccruxsJson;
|
|
@Excel(name = "正则关键字集合(不含)")
|
private String dynamiccruxsJson;
|
|
@ApiModelProperty(value = "正则关键字(含)")
|
@Excel(name = "正则关键字(含)")
|
private List<String> nodynamiccruxs = new ArrayList<>();
|
|
@ApiModelProperty(value = "正则关键字(不含)")
|
@Excel(name = "正则关键字(不含)")
|
private List<String> dynamiccruxs = new ArrayList<>();
|
|
/**
|
* 选项描述
|
*/
|
@Excel(name = "选项描述")
|
@ApiModelProperty(value = "选项描述")
|
private String optiondesc;
|
|
/**
|
* 语言
|
*/
|
@Excel(name = "语言")
|
@ApiModelProperty(value = "语言")
|
private String language;
|
|
/**
|
* 版本
|
*/
|
@Excel(name = "版本")
|
@ApiModelProperty(value = "版本")
|
private String version;
|
|
/**
|
* 分组ID
|
*/
|
@Excel(name = "分组ID")
|
@ApiModelProperty(value = "分组ID")
|
private String groupid;
|
|
/**
|
* 是否异常标识
|
*/
|
@Excel(name = "是否异常标识")
|
@ApiModelProperty(value = "是否异常标识")
|
private Long isabnormal;
|
|
/**
|
* 预警阀值上限
|
*/
|
@Excel(name = "预警阀值上限")
|
@ApiModelProperty(value = "预警阀值上限")
|
private Long warnup;
|
|
/**
|
* 预警阀值下限
|
*/
|
@Excel(name = "预警阀值下限")
|
@ApiModelProperty(value = "预警阀值下限")
|
private Long warndown;
|
|
/**
|
* 删除标记
|
*/
|
@ApiModelProperty(value = "删除标记")
|
private String delFlag;
|
|
/**
|
* 上传标记
|
*/
|
@Excel(name = " 上传标记 ")
|
@ApiModelProperty(value = "上传标记")
|
private Long isupload;
|
|
/**
|
* 上传时间
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
@Excel(name = " 上传时间 ", width = 30, dateFormat = "yyyy-MM-dd")
|
@ApiModelProperty(value = "上传时间")
|
private Date uploadTime;
|
|
/**
|
* 机构ID
|
*/
|
@Excel(name = " 机构ID ")
|
@ApiModelProperty(value = "机构ID")
|
private String orgid;
|
|
/**
|
* 父ID
|
*/
|
@Excel(name = "父ID")
|
@ApiModelProperty(value = "父ID")
|
private Long pid;
|
|
/**
|
* GUID
|
*/
|
@Excel(name = "GUID")
|
@ApiModelProperty(value = "GUID")
|
private String guid;
|
|
/**
|
* 是否存在操作:1 新增 2修改 3删除
|
*/
|
@ApiModelProperty(value = "是否存在操作:1 新增 2修改 3删除")
|
private Integer isoperation;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Long getTargetid() {
|
return targetid;
|
}
|
|
public void setTargetid(Long targetid) {
|
this.targetid = targetid;
|
}
|
|
public String getTargetname() {
|
return targetname;
|
}
|
|
public void setTargetname(String targetname) {
|
this.targetname = targetname;
|
}
|
|
public Long getTemplateID() {
|
return templateID;
|
}
|
|
public void setTemplateID(Long templateID) {
|
this.templateID = templateID;
|
}
|
|
public Long getScriptid() {
|
return scriptid;
|
}
|
|
public void setScriptid(Long scriptid) {
|
this.scriptid = scriptid;
|
}
|
|
public String getTargettype() {
|
return targettype;
|
}
|
|
public void setTargettype(String targettype) {
|
this.targettype = targettype;
|
}
|
|
public String getCategoryName() {
|
return categoryName;
|
}
|
|
public void setCategoryName(String categoryName) {
|
this.categoryName = categoryName;
|
}
|
|
public String getTargetvalue() {
|
return targetvalue;
|
}
|
|
public void setTargetvalue(String targetvalue) {
|
this.targetvalue = targetvalue;
|
}
|
|
public String getTargetregex() {
|
return targetregex;
|
}
|
|
public void setTargetregex(String targetregex) {
|
this.targetregex = targetregex;
|
}
|
|
public String getTargetregex2() {
|
return targetregex2;
|
}
|
|
public void setTargetregex2(String targetregex2) {
|
this.targetregex2 = targetregex2;
|
}
|
|
public String getNodynamiccruxsJson() {
|
return nodynamiccruxsJson;
|
}
|
|
public void setNodynamiccruxsJson(String nodynamiccruxsJson) {
|
if (this.nodynamiccruxs != null) {
|
this.nodynamiccruxsJson = new Gson().toJson(this.nodynamiccruxs);
|
} else {
|
this.nodynamiccruxsJson = nodynamiccruxsJson;
|
}
|
}
|
|
public String getDynamiccruxsJson() {
|
return dynamiccruxsJson;
|
}
|
|
public void setDynamiccruxsJson(String dynamiccruxsJson) {
|
if (this.dynamiccruxs != null) {
|
this.dynamiccruxsJson = new Gson().toJson(this.dynamiccruxs);
|
} else {
|
this.dynamiccruxsJson = dynamiccruxsJson;
|
}
|
}
|
|
public List<String> getNodynamiccruxs() {
|
return nodynamiccruxs;
|
}
|
|
public void setNodynamiccruxs(List<String> nodynamiccruxs) {
|
this.nodynamiccruxs = nodynamiccruxs;
|
}
|
|
public List<String> getDynamiccruxs() {
|
return dynamiccruxs;
|
}
|
|
public void setDynamiccruxs(List<String> dynamiccruxs) {
|
this.dynamiccruxs = dynamiccruxs;
|
}
|
|
public String getOptiondesc() {
|
return optiondesc;
|
}
|
|
public void setOptiondesc(String optiondesc) {
|
this.optiondesc = optiondesc;
|
}
|
|
public String getLanguage() {
|
return language;
|
}
|
|
public void setLanguage(String language) {
|
this.language = language;
|
}
|
|
public String getVersion() {
|
return version;
|
}
|
|
public void setVersion(String version) {
|
this.version = version;
|
}
|
|
public String getGroupid() {
|
return groupid;
|
}
|
|
public void setGroupid(String groupid) {
|
this.groupid = groupid;
|
}
|
|
public Long getIsabnormal() {
|
return isabnormal;
|
}
|
|
public void setIsabnormal(Long isabnormal) {
|
this.isabnormal = isabnormal;
|
}
|
|
public Long getWarnup() {
|
return warnup;
|
}
|
|
public void setWarnup(Long warnup) {
|
this.warnup = warnup;
|
}
|
|
public Long getWarndown() {
|
return warndown;
|
}
|
|
public void setWarndown(Long warndown) {
|
this.warndown = warndown;
|
}
|
|
public String getDelFlag() {
|
return delFlag;
|
}
|
|
public void setDelFlag(String delFlag) {
|
this.delFlag = delFlag;
|
}
|
|
public Long getIsupload() {
|
return isupload;
|
}
|
|
public void setIsupload(Long isupload) {
|
this.isupload = isupload;
|
}
|
|
public Date getUploadTime() {
|
return uploadTime;
|
}
|
|
public void setUploadTime(Date uploadTime) {
|
this.uploadTime = uploadTime;
|
}
|
|
public String getOrgid() {
|
return orgid;
|
}
|
|
public void setOrgid(String orgid) {
|
this.orgid = orgid;
|
}
|
|
public Long getPid() {
|
return pid;
|
}
|
|
public void setPid(Long pid) {
|
this.pid = pid;
|
}
|
|
public String getGuid() {
|
return guid;
|
}
|
|
public void setGuid(String guid) {
|
this.guid = guid;
|
}
|
|
public Integer getIsoperation() {
|
return isoperation;
|
}
|
|
public void setIsoperation(Integer isoperation) {
|
this.isoperation = isoperation;
|
}
|
}
|