zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
commit | author | age
a18bfa 1 package com.codingapi.tm.compensate.model;
Z 2
3 /**
4  * create by lorne on 2017/11/12
5  */
6 public class TxModel {
7
8     private String time;
9
10     private String className;
11
12     private String method;
13
14     private int executeTime;
15
16     private String base64;
17
18     private int state;
19
20     private long order;
21
22     private String key;
23
24     public String getKey() {
25         return key;
26     }
27
28     public void setKey(String key) {
29         this.key = key;
30     }
31
32     public long getOrder() {
33         return order;
34     }
35
36     public void setOrder(long order) {
37         this.order = order;
38     }
39
40     public String getBase64() {
41         return base64;
42     }
43
44     public void setBase64(String base64) {
45         this.base64 = base64;
46     }
47
48     public String getClassName() {
49         return className;
50     }
51
52     public void setClassName(String className) {
53         this.className = className;
54     }
55
56     public String getMethod() {
57         return method;
58     }
59
60     public void setMethod(String method) {
61         this.method = method;
62     }
63
64     public int getExecuteTime() {
65         return executeTime;
66     }
67
68     public void setExecuteTime(int executeTime) {
69         this.executeTime = executeTime;
70     }
71
72     public String getTime() {
73         return time;
74     }
75
76     public void setTime(String time) {
77         this.time = time;
78     }
79
80     public int getState() {
81         return state;
82     }
83
84     public void setState(int state) {
85         this.state = state;
86     }
87 }