TaskStatusConfig.java
4.6 KB
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
package com.huaheng.mobilewms.bean;
/**
* Created by youjie on 2018/8/14
*/
public class TaskStatusConfig {
private String code;
private String created;
private String createdBy;
private boolean deleted;
private String description;
private boolean enable;
private int headerId;
private int id;
private String lastUpdated;
private String lastUpdatedBy;
private int pageNumber;
private int pageSize;
private String sectionEndTime;
private String sectionStartTime;
private String userDef1;
private String userDef2;
private String userDef3;
private String userDef4;
private String userDef5;
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getCreated() {
return created;
}
public void setCreated(String created) {
this.created = created;
}
public String getCreatedBy() {
return createdBy;
}
public void setCreatedBy(String createdBy) {
this.createdBy = createdBy;
}
public boolean isDeleted() {
return deleted;
}
public void setDeleted(boolean deleted) {
this.deleted = deleted;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public boolean isEnable() {
return enable;
}
public void setEnable(boolean enable) {
this.enable = enable;
}
public int getHeaderId() {
return headerId;
}
public void setHeaderId(int headerId) {
this.headerId = headerId;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getLastUpdated() {
return lastUpdated;
}
public void setLastUpdated(String lastUpdated) {
this.lastUpdated = lastUpdated;
}
public String getLastUpdatedBy() {
return lastUpdatedBy;
}
public void setLastUpdatedBy(String lastUpdatedBy) {
this.lastUpdatedBy = lastUpdatedBy;
}
public int getPageNumber() {
return pageNumber;
}
public void setPageNumber(int pageNumber) {
this.pageNumber = pageNumber;
}
public int getPageSize() {
return pageSize;
}
public void setPageSize(int pageSize) {
this.pageSize = pageSize;
}
public String getSectionEndTime() {
return sectionEndTime;
}
public void setSectionEndTime(String sectionEndTime) {
this.sectionEndTime = sectionEndTime;
}
public String getSectionStartTime() {
return sectionStartTime;
}
public void setSectionStartTime(String sectionStartTime) {
this.sectionStartTime = sectionStartTime;
}
public String getUserDef1() {
return userDef1;
}
public void setUserDef1(String userDef1) {
this.userDef1 = userDef1;
}
public String getUserDef2() {
return userDef2;
}
public void setUserDef2(String userDef2) {
this.userDef2 = userDef2;
}
public String getUserDef3() {
return userDef3;
}
public void setUserDef3(String userDef3) {
this.userDef3 = userDef3;
}
public String getUserDef4() {
return userDef4;
}
public void setUserDef4(String userDef4) {
this.userDef4 = userDef4;
}
public String getUserDef5() {
return userDef5;
}
public void setUserDef5(String userDef5) {
this.userDef5 = userDef5;
}
@Override
public String toString() {
return "TaskStatusConfig{" +
"code='" + code + '\'' +
", created='" + created + '\'' +
", createdBy='" + createdBy + '\'' +
", deleted=" + deleted +
", description='" + description + '\'' +
", enable=" + enable +
", headerId=" + headerId +
", id=" + id +
", lastUpdated='" + lastUpdated + '\'' +
", lastUpdatedBy='" + lastUpdatedBy + '\'' +
", pageNumber=" + pageNumber +
", pageSize=" + pageSize +
", sectionEndTime='" + sectionEndTime + '\'' +
", sectionStartTime='" + sectionStartTime + '\'' +
", userDef1='" + userDef1 + '\'' +
", userDef2='" + userDef2 + '\'' +
", userDef3='" + userDef3 + '\'' +
", userDef4='" + userDef4 + '\'' +
", userDef5='" + userDef5 + '\'' +
'}';
}
}