This repository was archived by the owner on Sep 6, 2023. It is now read-only.

Description
fun getTaokeParams(taokePar: Map<String?, Any?>): AlibcTaokeParams? {
val pid = taokePar["pid"] as String?
val taokeParams = AlibcTaokeParams("", "", "")
if (pid != null) {
taokeParams.setPid(pid)
}
val extParams = taokePar["extParams"]
//TODO 其他参数待添加
return taokeParams
}
定义了extParams没有set