UserConstants.kt 563 Bytes
Newer Older
1
package com.yidianling.user
konghaorui committed
2

ydl committed
3 4
import com.ydl.ydlcommon.base.config.HttpConfig

konghaorui committed
5 6 7 8 9 10 11 12 13 14 15 16
object UserConstants {

    const val REGISTER_ACTION = "register"
    const val FORGET_ACTION = "forget"
    const val SIGNIN_ACTION = "signin"
    const val CHANGE_ACTION = "change"
    const val BIND_PHONE_ACTION = "wxbind"

    const val MIN_GET_CODE_TIME = 60

    const val IS_REGISTER_FROM_PACKET = "isRegisterFromRedPacket"

ydl committed
17 18 19 20 21 22 23
    //余额明细一页请求的数据
    const val FUND_PAGE_SIZE = 20


    //黑名单
    val My_BLACK = HttpConfig.H5_URL + "mine/black-list/"

konghaorui committed
24
}