zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
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
package com.codingapi.tx.aop.bean;
 
import com.codingapi.tx.annotation.TxTransaction;
import com.codingapi.tx.model.TransactionInvocation;
 
 
/**
 * 切面控制对象
 * Created by lorne on 2017/6/8.
 */
public class TxTransactionInfo {
 
 
    private TxTransaction transaction;
 
 
    private TxTransactionLocal txTransactionLocal;
 
    /**
     * 事务组Id
     */
    private String txGroupId;
 
 
    private TransactionInvocation invocation;
 
 
    public TxTransactionInfo(TxTransaction transaction, TxTransactionLocal txTransactionLocal, TransactionInvocation invocation, String txGroupId) {
        this.transaction = transaction;
        this.txTransactionLocal = txTransactionLocal;
        this.txGroupId = txGroupId;
        this.invocation = invocation;
    }
 
 
    public TxTransaction getTransaction() {
        return transaction;
    }
 
    public TxTransactionLocal getTxTransactionLocal() {
        return txTransactionLocal;
    }
 
    public String getTxGroupId() {
        return txGroupId;
    }
 
    public TransactionInvocation getInvocation() {
        return invocation;
    }
 
}