zhs
2025-04-17 d768725d119fb5ab75df5c8cf37fe9d7cde3e529
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();
 
 
}