BindPhoneParam.kt 454 Bytes
Newer Older
1
package com.yidianling.user.http.request
konghaorui committed
2

3
import com.ydl.ydlcommon.data.http.EncryptUtils
konghaorui committed
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20


/**
 * author : Zhangwenchao
 * e-mail : zhangwch@yidianling.com
 * time   : 2018/02/05
 */
data class BindPhoneParam(val country_code: String,
                          val userName: String,
                          val vcode: String,
                          var passwd: String) {

    init {
        passwd = EncryptUtils.encryptMD5ToString(passwd)
    }

}