yujian
2019-10-28 bf5c02aaecb3f7a42daa4fa356c62a2e6bca0db5
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
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;
    }
 
}