WithDrawCmd.java 513 Bytes
Newer Older
ydl committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
package com.yidianling.user.mine.bean;

/**
 * Created by jiucheng on 2018/7/13.
 * 功能:
 */

public class WithDrawCmd {
    public String id;//提现账户的id
    public String money;//提现金额
    public String vcode;//收到的验证码
    public String withdrawType;//5、用户自主提现6、专家自主提现

    public WithDrawCmd(String id, String money, String vcode) {
        this.id = id;
        this.money = money;
        this.vcode = vcode;
        this.withdrawType = "5";
    }
}