CheckPwd.java 284 Bytes
Newer Older
1
package com.yidianling.user.http.request;
konghaorui committed
2 3


4
import com.ydl.ydlcommon.data.http.EncryptUtils;
konghaorui committed
5 6 7 8 9 10 11 12 13 14 15

//更换手机时密码验证
public class CheckPwd {

    public String passwd;

    public CheckPwd(String passwd) {
        this.passwd = EncryptUtils.encryptMD5ToString(passwd);
    }

}