package com.ydl.audioim.http.command import com.ydl.ydlcommon.data.http.BaseCommand /** * author : Zhangwenchao * e-mail : zhangwch@yidianling.com * time : 2018/03/08 */ class ConnectCommand : BaseCommand { var id: String = "0" //倾诉id var type: String = "1" //1 走AxB 2双呼 3声网 var isCheckStatus = "2"//1 检测专家状态 2 跳过检测专家状态 constructor() : super() constructor(id: String, type: String) : super() { this.id = id this.type = type } }