package com.yeshi.fanli.dto.mq.order.body;
|
|
/**
|
* @author hxh
|
* @title: CommonOrderMQMsg
|
* @description: 订单消息
|
* @date 2022/10/8 15:24
|
*/
|
public class CommonOrderMQMsg {
|
private String orderId;
|
private int sourceType;
|
|
public CommonOrderMQMsg(String orderId, int sourceType) {
|
this.orderId = orderId;
|
this.sourceType = sourceType;
|
}
|
|
public String getOrderId() {
|
return orderId;
|
}
|
|
public void setOrderId(String orderId) {
|
this.orderId = orderId;
|
}
|
|
public int getSourceType() {
|
return sourceType;
|
}
|
|
public void setSourceType(int sourceType) {
|
this.sourceType = sourceType;
|
}
|
}
|