ChannelIdParam.kt 420 Bytes
Newer Older
1
package com.yidianling.user.http.request
konghaorui committed
2

严久程 committed
3 4 5
import com.ydl.ydlcommon.base.BaseApp
import com.yidianling.common.tools.RxNetTool

konghaorui committed
6 7 8 9 10
/**
 * author : Zhangwenchao
 * e-mail : zhangwch@yidianling.com
 * time   : 2018/02/05
 */
严久程 committed
11
data class ChannelIdParam(val channelId: String, val type: String,val netType: String) {
konghaorui committed
12

严久程 committed
13
    constructor(channelId: String): this(channelId, "android",RxNetTool.getNetWorkTypeName(BaseApp.getApp()))
konghaorui committed
14 15

}