HighlighterItem.kt 602 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 28
package com.yidianling.consultant.model.bean

import com.google.gson.annotations.SerializedName

data class HighlighterItem(

        @field:SerializedName("value")
        var value: String? = null,

        /**
         * 这个type
         *
         * 1:主题
         * 2:省
         * 3:排序
         * 4:咨询方式
         * 5:年龄选择
         * 6:其他选择
         * 7:资质选择
         * 8.市
         *
         */
        @field:SerializedName("type")
        var type: String? = null,

        @field:SerializedName("id")
        var id: String? = null
)