yujian
2019-11-04 148af6b2f57be264c84d0991237fbd7ddea491a4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
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;
    }
 
}