liusheng
2024-04-15 fdf1b9c1e4489a0c2615fa596268b2f71fad7b4c
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
package com.smartor.domain;
 
import lombok.Data;
 
import java.util.ArrayList;
import java.util.List;
 
@Data
public class QuestionMessage {
    //    //题号targetId
//    private Integer code;
    //返回的内容
    private String content;
 
    //开场白
    private String kcb = null;
 
    //结束语
    private String jsy = null;
 
    //当前问题
    private IvrLibaTemplateScriptVO nowQuestion = new IvrLibaTemplateScriptVO();
 
    //问题清单
    private List<IvrLibaTemplateScriptVO> questionList = new ArrayList();
 
 
}