public class BibleChatDTO implements Serializable{

    private String leftCnt; //
    private int isVip; //
    private BibleChatDailyVerseDTO dailyVerse; //
    private BiblePopularQuestionDTO[] popularQuestionList; //
    private Object[] bigTopicList; //
    private Object[] smallTopicList; //

    public String getLeftCnt(){
        return leftCnt;
    }

    public void setLeftCnt(String leftCnt){
        this.leftCnt = leftCnt;
    }

    public int getIsVip(){
        return isVip;
    }

    public void setIsVip(int isVip){
        this.isVip = isVip;
    }

    public BibleChatDailyVerseDTO getDailyVerse(){
        return dailyVerse;
    }

    public void setDailyVerse(BibleChatDailyVerseDTO dailyVerse){
        this.dailyVerse = dailyVerse;
    }

    public BiblePopularQuestionDTO[] getPopularQuestionList(){
        return popularQuestionList;
    }

    public void setPopularQuestionList(BiblePopularQuestionDTO[] popularQuestionList){
        this.popularQuestionList = popularQuestionList;
    }

    public Object[] getBigTopicList(){
        return bigTopicList;
    }

    public void setBigTopicList(Object[] bigTopicList){
        this.bigTopicList = bigTopicList;
    }

    public Object[] getSmallTopicList(){
        return smallTopicList;
    }

    public void setSmallTopicList(Object[] smallTopicList){
        this.smallTopicList = smallTopicList;
    }

}
public class BibleChatDailyVerseDTO implements Serializable{

    private String content; //
    private String reference; //
    private String verseId; //

    public String getContent(){
        return content;
    }

    public void setContent(String content){
        this.content = content;
    }

    public String getReference(){
        return reference;
    }

    public void setReference(String reference){
        this.reference = reference;
    }

    public String getVerseId(){
        return verseId;
    }

    public void setVerseId(String verseId){
        this.verseId = verseId;
    }

}
public class BiblePopularQuestionDTO implements Serializable{

    private int questionId; //
    private String question; //

    public int getQuestionId(){
        return questionId;
    }

    public void setQuestionId(int questionId){
        this.questionId = questionId;
    }

    public String getQuestion(){
        return question;
    }

    public void setQuestion(String question){
        this.question = question;
    }

}