package com.yeshi.fanli.dto.mq.user.body;
|
|
import com.yeshi.fanli.dto.mq.BaseMQMsgBody;
|
|
/**
|
* 用券的mq消息实体
|
*
|
* @author Administrator
|
*
|
*/
|
public class UserSystemCouponUseMQMsg extends BaseMQMsgBody {
|
private Long userSystemCouponId;// 用户的券ID
|
private String orderId;// 订单号
|
private Integer sourceType;// 订单来源
|
private String couponType;// 券类型
|
|
public UserSystemCouponUseMQMsg(Long userSystemCouponId, String orderId, Integer sourceType, String couponType) {
|
super();
|
this.userSystemCouponId = userSystemCouponId;
|
this.orderId = orderId;
|
this.sourceType = sourceType;
|
this.couponType = couponType;
|
}
|
|
public String getCouponType() {
|
return couponType;
|
}
|
|
public void setCouponType(String couponType) {
|
this.couponType = couponType;
|
}
|
|
public UserSystemCouponUseMQMsg() {
|
super();
|
}
|
|
public Long getUserSystemCouponId() {
|
return userSystemCouponId;
|
}
|
|
public void setUserSystemCouponId(Long userSystemCouponId) {
|
this.userSystemCouponId = userSystemCouponId;
|
}
|
|
public String getOrderId() {
|
return orderId;
|
}
|
|
public void setOrderId(String orderId) {
|
this.orderId = orderId;
|
}
|
|
public Integer getSourceType() {
|
return sourceType;
|
}
|
|
public void setSourceType(Integer sourceType) {
|
this.sourceType = sourceType;
|
}
|
|
}
|