package com.yeshi.makemoney.app.service.query.msg;
|
|
import com.yeshi.makemoney.app.entity.msg.UserMsgType;
|
import com.yeshi.makemoney.app.service.query.BaseQuery;
|
|
public class UserMsgQuery extends BaseQuery {
|
|
private UserMsgType type;
|
private Long uid;
|
|
|
public UserMsgType getType() {
|
return type;
|
}
|
|
public void setType(UserMsgType type) {
|
this.type = type;
|
}
|
|
public Long getUid() {
|
return uid;
|
}
|
|
public void setUid(Long uid) {
|
this.uid = uid;
|
}
|
}
|