ListNewInboxReqVO.java
436 Bytes
package com.yohoufo.user.requestVO;
/**
* Created by shengguo.cai on 2018/9/12.
*/
public class ListNewInboxReqVO extends PageReqVO {
private int uid;
private Integer type;
public int getUid() {
return uid;
}
public void setUid(int uid) {
this.uid = uid;
}
public Integer getType() {
return type;
}
public void setType(Integer type) {
this.type = type;
}
}