ExpertBean.kt 460 Bytes
Newer Older
upwork.021 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
package com.yidianling.consultant.model.bean

/**
 * @author yuanWai
 * @描述:专家搜索页数据bean
 * @Copyright Copyright (c) 2018
 * @Company 壹点灵
 * @date 2018/12/11
 */
data class ExpertBean(
    val amount : Int = 0,
    val skip : Int = 0,
    val limit : Int = 0,
    val size : Int = 10,
15
    val objects : MutableList<ExpertServiceItem>,
upwork.021 committed
16 17 18 19 20 21
    // 分页需要
    val extras: Extras?)

data class Extras(
    val skips: HashMap<String, Int>
)