| | |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | | import org.apache.commons.lang3.builder.ToStringStyle; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | |
| | | @ApiModelProperty(value = "是否存在操作:1 新增 2修改 3删除") |
| | | private Integer isoperation; |
| | | |
| | | /** |
| | | * 参数变量 |
| | | */ |
| | | @ApiModelProperty("参数变量") |
| | | @Excel(name = "参数变量") |
| | | private String parameter; |
| | | |
| | | @ApiModelProperty(value = "指标选项集合") |
| | | private List<IvrLibaTargetoption> targetoptionList; |
| | | private List<IvrLibaTargetoption> targetoptionList = new ArrayList<>(); |
| | | |
| | | @ApiModelProperty(value = "标签集合") |
| | | private List<BaseTag> baseTagList; |
| | | private List<BaseTag> baseTagList = new ArrayList<>(); |
| | | |
| | | } |