ConnectBean.kt 941 Bytes
Newer Older
洪国微 committed
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 29 30 31 32
package com.ydl.audioim.bean

class ConnectBean{
    var dialDetail : DialDetail? = null
    var listenOrderId : Long? = 0 //订单ID
    var callId : String? = null //
    var payId : String?=null //支付ID
    var payTitle : String? = null //支付标题
    var listenOrderPrice : Double? = null //订单金额
    var userBaseInfoRespDto : UserBaseInfoRespDto?=null
    var coupon :CouponData? = null //优惠信息
}

class DialDetail{
    var agoraExpertInfo: ExpertInfoBean? = null
    var callConnectType :Int ? = null
    var dialReason : String? = null //连接失败原因
    var dialStatus : Int? = null //连接状态
    var phoneNu : String ?= null //axb号码
}

class UserBaseInfoRespDto{
    var availableMoney : Double ? = null
    var companyMoney : Double ? = null
    var doctorId : Long ? = null
    var phone : Long ? = null
    var userType : String?=null
}

class CouponData{
    var couponMoney:Double? = 0.00
}