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;
|
}
|
}
|