WalletRequestBean.java 1.19 KB
package com.cnlive.goldenline.model.mine;

/**
 * Description:
 * Created on 2017/3/29
 * Author : 郭
 */
public class WalletRequestBean {
    private String userId;
    private String appId;//视讯云上注册对应的appid
    private String body;//订单信息
    private int total_fee;//订单总额 单位(分)
    private int type;//订单支付方式
    private String ver;//app版本号

    public String getAppId() {
        return appId;
    }

    public void setAppId(String appId) {
        this.appId = appId;
    }

    public String getBody() {
        return body;
    }

    public void setBody(String body) {
        this.body = body;
    }

    public int getTotal_fee() {
        return total_fee;
    }

    public void setTotal_fee(int total_fee) {
        this.total_fee = total_fee;
    }

    public int getType() {
        return type;
    }

    public void setType(int type) {
        this.type = type;
    }

    public String getVer() {
        return ver;
    }

    public void setVer(String ver) {
        this.ver = ver;
    }

    public String getUserId() {
        return userId;
    }

    public void setUserId(String userId) {
        this.userId = userId;
    }
}