ConnectParamJava.kt 526 Bytes
Newer Older
洪国微 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
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声网
洪国微 committed
15
    var callType:String? = null //
洪国微 committed
16 17

    constructor() : super()
洪国微 committed
18
    constructor(id: String, type: String, callType: String?) : super() {
洪国微 committed
19 20
        this.id = id
        this.type = type
21
        this.callType = callType
洪国微 committed
22 23
    }

24

洪国微 committed
25
}