package com.ydl.confide.home.bean import com.ydl.ydlcommon.data.http.BaseCommand /** * author : harvie * e-mail : zhangwch@yidianling.com * time : 2018/03/08 */ class ConnectParamJava : BaseCommand { var id: String = "0" //倾诉id var type: String = "1" //1 走AxB 2双呼 3声网 var callType:String? = null // constructor() : super() constructor(id: String, type: String, callType: String?) : super() { this.id = id this.type = type this.callType = callType } }