CollectRespons.java 1.09 KB
package com.cnlive.goldenline.ui.model;

/**
 * @Author Mr.hou
 * @time 2017/4/10
 * @Desc
 */

public class CollectRespons {
    /**
     * userId : jm
     * vdId : 862bda71083c48baa4cbbcf1d9fb6bf5
     * type : 1
     */

    private String userId;
    private String vdId;
    private int type;

    public CollectRespons() {
    }

    public CollectRespons(String userId, String vdId, int type) {
        this.userId = userId;
        this.vdId = vdId;
        this.type = type;
    }

    @Override
    public String toString() {
        return "CollectRespons{" +
                "userId='" + userId + '\'' +
                ", vdId='" + vdId + '\'' +
                ", type=" + type +
                '}';
    }

    public String getUserId() {
        return userId;
    }

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

    public String getVdId() {
        return vdId;
    }

    public void setVdId(String vdId) {
        this.vdId = vdId;
    }

    public int getType() {
        return type;
    }

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