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
84
85
86
87
package com.codingapi.tm.compensate.model;
 
/**
 * create by lorne on 2017/11/12
 */
public class TxModel {
 
    private String time;
 
    private String className;
 
    private String method;
 
    private int executeTime;
 
    private String base64;
 
    private int state;
 
    private long order;
 
    private String key;
 
    public String getKey() {
        return key;
    }
 
    public void setKey(String key) {
        this.key = key;
    }
 
    public long getOrder() {
        return order;
    }
 
    public void setOrder(long order) {
        this.order = order;
    }
 
    public String getBase64() {
        return base64;
    }
 
    public void setBase64(String base64) {
        this.base64 = base64;
    }
 
    public String getClassName() {
        return className;
    }
 
    public void setClassName(String className) {
        this.className = className;
    }
 
    public String getMethod() {
        return method;
    }
 
    public void setMethod(String method) {
        this.method = method;
    }
 
    public int getExecuteTime() {
        return executeTime;
    }
 
    public void setExecuteTime(int executeTime) {
        this.executeTime = executeTime;
    }
 
    public String getTime() {
        return time;
    }
 
    public void setTime(String time) {
        this.time = time;
    }
 
    public int getState() {
        return state;
    }
 
    public void setState(int state) {
        this.state = state;
    }
}