wuxw
2019-02-07 c5aac73ec29f74904b544a722037b39bbb85ab3e
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
package com.java110.core.context;
 
import java.util.Date;
 
/**
 * @author wux
 * @create 2019-02-07 下午7:01
 * @desc 订单通知数据流信息
 **/
public abstract class AbstractOrderNotifyDataFlowContext extends AbstractDataFlowContextPlus implements IOrderNotifyDataFlowContext,IOrderResponse {
    protected AbstractOrderNotifyDataFlowContext(Date startDate, String code) {
 
    }
 
 
    private String transactionId;
    private Date responseTime;
    private String orderTypeCd;
    private String businessType;
 
    private String code;
 
    private String message;
 
    private String bId;
 
    private String businessTypeCd;
 
    public String getCode() {
        return code;
    }
 
    public void setCode(String code) {
        this.code = code;
    }
 
    public String getMessage() {
        return message;
    }
 
    public void setMessage(String message) {
        this.message = message;
    }
 
    public String getTransactionId() {
        return transactionId;
    }
 
    public void setTransactionId(String transactionId) {
        this.transactionId = transactionId;
    }
 
    public Date getResponseTime() {
        return responseTime;
    }
 
    public void setResponseTime(Date responseTime) {
        this.responseTime = responseTime;
    }
 
    public String getOrderTypeCd() {
        return orderTypeCd;
    }
 
    public void setOrderTypeCd(String orderTypeCd) {
        this.orderTypeCd = orderTypeCd;
    }
 
    public String getBusinessType() {
        return businessType;
    }
 
    public void setBusinessType(String businessType) {
        this.businessType = businessType;
    }
 
    public String getbId() {
        return bId;
    }
 
    public void setbId(String bId) {
        this.bId = bId;
    }
 
    public String getBusinessTypeCd() {
        return businessTypeCd;
    }
 
    public void setBusinessTypeCd(String businessTypeCd) {
        this.businessTypeCd = businessTypeCd;
    }
 
 
}