InboxReqVO.java 622 Bytes
package com.yohoufo.user.requestVO;

/**
 * Created by shengguo.cai on 2018/9/12.
 */
public class InboxReqVO {
    private int uid;
    private String type;
    private Integer businessType;

    public int getUid() {
        return uid;
    }

    public void setUid(int uid) {
        this.uid = uid;
    }

    public String getType() {
        return type;
    }

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

    public Integer getBusinessType() {
        return businessType;
    }

    public void setBusinessType(Integer businessType) {
        this.businessType = businessType;
    }
}