admin
2021-04-08 d7a3014c38dbb1061cba70e7dbb49d58831e6399
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
28
29
30
31
32
33
34
35
36
37
38
39
package com.yeshi.buwan.dto.mq;
 
public class PPTVMQMsg {
    public final static int TYPE_ADD_OR_UPDATE = 1;
    public final static int TYPE_DELETE = 2;
 
    private String handler;
    private String infoId;
    private int type;
 
    public PPTVMQMsg(String infoId, int type) {
        this.infoId = infoId;
        this.type = type;
    }
 
    public String getHandler() {
        return handler;
    }
 
    public void setHandler(String handler) {
        this.handler = handler;
    }
 
    public String getInfoId() {
        return infoId;
    }
 
    public void setInfoId(String infoId) {
        this.infoId = infoId;
    }
 
    public int getType() {
        return type;
    }
 
    public void setType(int type) {
        this.type = type;
    }
}