admin
2022-04-07 e1cc0d03fadc2d251d36c0dc3650f75e830d5363
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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;
    }
}