package com.yeshi.makemoney.app.service.query.msg;
|
|
import com.yeshi.makemoney.app.entity.msg.AppPageNotifyMsg;
|
|
public class AppPageNotifyMsgQuery {
|
|
private AppPageNotifyMsg.AppPageNotifyMsgType type;
|
|
//搜索关键词
|
private String kw;
|
|
public String getKw() {
|
return kw;
|
}
|
|
public void setKw(String kw) {
|
this.kw = kw;
|
}
|
|
public AppPageNotifyMsg.AppPageNotifyMsgType getType() {
|
return type;
|
}
|
|
public void setType(AppPageNotifyMsg.AppPageNotifyMsgType type) {
|
this.type = type;
|
}
|
}
|