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 )