Route.kt 359 Bytes
Newer Older
1 2
package com.ydl.confide.api

3 4

object ConfideRoute {
万齐军 committed
5
    const val R_VIDEO_SHOW = "/confide/expert_video"
万齐军 committed
6
    const val R_CONFIDE_HOME = "/confide/home"
7

霍志良 committed
8
    fun h5ConfideIntro(id: String) = "jy/listenMask?listenerId=${id}"
9

万齐军 committed
10 11
    fun h5ExpertEval(doctorId: String, confideId: String) =
        "comment/evaList/${doctorId}?listenerId=${confideId}&fromVideo=1"
12
}