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