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(); 
 | 
  
 | 
  
 | 
} 
 |