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
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
package com.codingapi.tx.model;
 
import java.io.Serializable;
 
/**
 * create by lorne on 2017/11/11
 */
public class TransactionInvocation  implements Serializable{
 
    /**
     * 事务执行器
     */
    private Class targetClazz;
    /**
     * 方法
     */
    private String method;
    /**
     * 参数值
     */
    private Object[] argumentValues;
 
    /**
     * 参数类型
     */
    private Class[] parameterTypes;
 
    /**
     * 方法字符串
     */
    private String methodStr;
 
    public TransactionInvocation() {
    }
 
    public TransactionInvocation(Class targetClazz, String method, String methodStr, Object[] argumentValues, Class[] parameterTypes) {
        this.targetClazz = targetClazz;
        this.method = method;
        this.methodStr = methodStr;
        this.argumentValues = argumentValues;
        this.parameterTypes = parameterTypes;
    }
 
    public String getMethodStr() {
        return methodStr;
    }
 
    public void setMethodStr(String methodStr) {
        this.methodStr = methodStr;
    }
 
    public Class getTargetClazz() {
        return targetClazz;
    }
 
    public void setTargetClazz(Class targetClazz) {
        this.targetClazz = targetClazz;
    }
 
    public String getMethod() {
        return method;
    }
 
    public void setMethod(String method) {
        this.method = method;
    }
 
    public Object[] getArgumentValues() {
        return argumentValues;
    }
 
    public void setArgumentValues(Object[] argumentValues) {
        this.argumentValues = argumentValues;
    }
 
    public Class[] getParameterTypes() {
        return parameterTypes;
    }
 
    public void setParameterTypes(Class[] parameterTypes) {
        this.parameterTypes = parameterTypes;
    }
}