package com.yeshi.fanli.dto.user.coupon;
|
|
/**
|
* 用券的mq消息实体
|
*
|
* @author Administrator
|
*
|
*/
|
public class UserSystemCouponUseMQMsgDTO {
|
private Long userSystemCouponId;// 用户的券ID
|
private String orderId;// 订单号
|
private Integer sourceType;// 订单来源
|
|
public UserSystemCouponUseMQMsgDTO(Long userSystemCouponId, String orderId, Integer sourceType) {
|
this.userSystemCouponId = userSystemCouponId;
|
this.orderId = orderId;
|
this.sourceType = sourceType;
|
}
|
|
public UserSystemCouponUseMQMsgDTO() {
|
|
}
|
|
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;
|
}
|
|
}
|