package com.yeshi.fanli.dto.mq.order.body;
|
|
import com.yeshi.fanli.dto.mq.BaseMQMsgBody;
|
|
/**
|
* 红包MQ消息
|
*
|
* @author Administrator
|
*
|
*/
|
public class OrderMQMsg extends BaseMQMsgBody{
|
private String orderId;
|
private Integer type;
|
private Long uid;
|
|
public OrderMQMsg(String orderId, Integer type, Long uid) {
|
super();
|
this.orderId = orderId;
|
this.type = type;
|
this.uid = uid;
|
}
|
|
public OrderMQMsg() {
|
super();
|
}
|
|
|
public String getOrderId() {
|
return orderId;
|
}
|
|
public void setOrderId(String orderId) {
|
this.orderId = orderId;
|
}
|
|
public Integer getType() {
|
return type;
|
}
|
|
public void setType(Integer type) {
|
this.type = type;
|
}
|
|
public Long getUid() {
|
return uid;
|
}
|
|
public void setUid(Long uid) {
|
this.uid = uid;
|
}
|
}
|