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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
package pwc.taxtech.atms.entity;
import java.io.Serializable;
/**
*
* This class was generated by MyBatis Generator.
* This class corresponds to the database table cache
*
* @mbg.generated do_not_delete_during_merge
*/
public class Cache extends BaseEntity implements Serializable {
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cache.id
*
* @mbg.generated
*/
private String id;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cache.cache_key
*
* @mbg.generated
*/
private String cacheKey;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cache.last_modify_time
*
* @mbg.generated
*/
private String lastModifyTime;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table cache
*
* @mbg.generated
*/
private static final long serialVersionUID = 1L;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cache.id
*
* @return the value of cache.id
*
* @mbg.generated
*/
public String getId() {
return id;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cache.id
*
* @param id the value for cache.id
*
* @mbg.generated
*/
public void setId(String id) {
this.id = id == null ? null : id.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cache.cache_key
*
* @return the value of cache.cache_key
*
* @mbg.generated
*/
public String getCacheKey() {
return cacheKey;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cache.cache_key
*
* @param cacheKey the value for cache.cache_key
*
* @mbg.generated
*/
public void setCacheKey(String cacheKey) {
this.cacheKey = cacheKey == null ? null : cacheKey.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cache.last_modify_time
*
* @return the value of cache.last_modify_time
*
* @mbg.generated
*/
public String getLastModifyTime() {
return lastModifyTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cache.last_modify_time
*
* @param lastModifyTime the value for cache.last_modify_time
*
* @mbg.generated
*/
public void setLastModifyTime(String lastModifyTime) {
this.lastModifyTime = lastModifyTime == null ? null : lastModifyTime.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table cache
*
* @mbg.generated
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(getClass().getSimpleName());
sb.append(" [");
sb.append("Hash = ").append(hashCode());
sb.append(", id=").append(id);
sb.append(", cacheKey=").append(cacheKey);
sb.append(", lastModifyTime=").append(lastModifyTime);
sb.append("]");
return sb.toString();
}
}