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
package com.java110.core.context;
 
import java.util.Date;
 
/**
 * 订单通知上下文
 */
public interface IOrderNotifyDataFlowContext extends IDataFlowContextPlus{
 
 
    /**
     * 交易流水号
     * @return
     */
    public String getTransactionId();
 
    /**
     * 返回时间
     * @return
     */
    public Date getResponseTime();
 
    /**
     * 订单类型
     * @return
     */
    public String getOrderTypeCd();
 
    /**
     * 请求类型 B business过程 I instance过程 N notify过程
     * @return
     */
    public String getBusinessType();
 
    /**
     * 业务ID
     * @return
     */
    public String getbId();
 
 
    /**
     * 业务类型
     * @return
     */
    public String getBusinessTypeCd();
 
 
    public String getoId() ;
 
    public void setoId(String oId) ;
 
}