| | |
| | | package com.smartor.domain; |
| | | |
| | | import java.util.Date; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.common.annotation.Excel; |
| | | import com.ruoyi.common.core.domain.BaseEntity; |
| | | 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; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 模板指标选项库对象 ivr_liba_template_targetoption |
| | |
| | | */ |
| | | @Excel(name = "类别名称") |
| | | @ApiModelProperty(value = "类别名称") |
| | | private String categoryName; |
| | | private String categoryName = null; |
| | | |
| | | /** |
| | | * 模板指标值 |
| | |
| | | @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<>(); |
| | | |
| | | /** |
| | | * 选项描述 |
| | |
| | | @ApiModelProperty(value = "是否异常标识") |
| | | private Long isabnormal; |
| | | |
| | | /** |
| | | * 预警阀值上限 |
| | | */ |
| | | @Excel(name = "预警阀值上限") |
| | | @ApiModelProperty(value = "预警阀值上限") |
| | | private Long warnup; |
| | | |
| | | /** |
| | | * 预警阀值下限 |
| | | */ |
| | | @Excel(name = "预警阀值下限") |
| | | @ApiModelProperty(value = "预警阀值下限") |
| | | private Long warndown; |
| | | // /** |
| | | // * 预警阀值上限 |
| | | // */ |
| | | // @Excel(name = "预警阀值上限") |
| | | // @ApiModelProperty(value = "预警阀值上限") |
| | | // private Long warnup; |
| | | // |
| | | // /** |
| | | // * 预警阀值下限 |
| | | // */ |
| | | // @Excel(name = "预警阀值下限") |
| | | // @ApiModelProperty(value = "预警阀值下限") |
| | | // private Long warndown; |
| | | |
| | | /** |
| | | * 删除标记 |
| | |
| | | private Long pid; |
| | | |
| | | /** |
| | | * 选项续号 |
| | | */ |
| | | @Excel(name = "选项续号") |
| | | @ApiModelProperty(value = "选项续号") |
| | | private Long optionNo; |
| | | |
| | | /** |
| | | * GUID |
| | | */ |
| | | @Excel(name = "GUID") |
| | |
| | | */ |
| | | @ApiModelProperty(value = "是否存在操作:1 新增 2修改 3删除") |
| | | private Integer isoperation; |
| | | |
| | | /** |
| | | * 是否是用户选择的选项 |
| | | */ |
| | | @ApiModelProperty(value = "是否是用户选择的选项") |
| | | private Boolean isUserOperation = false; |
| | | |
| | | /** |
| | | * 下一题 |
| | | */ |
| | | @ApiModelProperty(value = "下一题") |
| | | private Integer nextQuestion; |
| | | |
| | | @ApiModelProperty(value = "选项附加标识") |
| | | private String appendflag; |
| | | |
| | | @ApiModelProperty(value = "附件信息") |
| | | private String appenddesc; |
| | | |
| | | |
| | | } |