SpeechLittlePhaseEditDTO.java 727 Bytes
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;

}