liusheng
2025-02-27 e00ef99886b9ab84f39c81432f8c7640e93026f9
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 QuestionMessagePhone {
    //    //题号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();
 
 
}