HotSearchBean.kt 803 Bytes
Newer Older
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
package com.yidianling.consultant.bean

import com.ydl.ydlcommon.bean.YDLBaseDataBean


/**
 * @author yuanWai
 * @描述:
 * @Copyright Copyright (c) 2018
 * @Company 壹点灵
 * @date 2019/3/19
 */
data class HotSearchBean(
                         /**
                          * 热门搜索
                          */
                         val keywordData : MutableList<HotSearchKeyWordDataBean>?,
                         /**
                          * 本周热门专家
                          */
                         val popularDoctors : MutableList<HotSearchPopularDoctorBean>?,
                         /**
                          * banner数据
                          */
                         val focusList : MutableList<HotSearchFocusItemBean>?) : YDLBaseDataBean(){

}