SpeechLittlePhaseEditDTO.java
755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package com.phase;
import lombok.*;
import java.util.HashMap;
@Setter
@Getter
@NoArgsConstructor
@AllArgsConstructor
@Builder
public class SpeechLittlePhaseEditDTO {
private Integer hintNum;
private String hintName;
private String hintTitle;
private String tts;
//触发条件状态(1 = 开, 2 = 关, 3 = 自定义条件开启),map中包含条件状态以及条件内容;
private HashMap condition;
//触发条件内容,环节类型已经相关内容,为了便于匹配前端入参格式,用hashMap封装入参
private HashMap hintType;
private Integer bindBefore;
private Integer bindAfter;
private String bindUnique;
private Integer classIndex;
private Integer popup;
}