| | |
| | | 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 = "是否存在操作:1 新增 2修改 3删除") |
| | | private Integer isoperation; |
| | | |
| | | /** |
| | | * 是否是用户选择的选项 |
| | | */ |
| | | @ApiModelProperty(value = "是否是用户选择的选项") |
| | | private Boolean isUserOperation = false; |
| | | |
| | | |
| | | /** |
| | | * 下一题 |
| | | */ |
| | | @ApiModelProperty(value = "下一题") |
| | | private Integer nextQuestion; |
| | | |
| | | } |