commandInfo.java
4.4 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
205
206
package com.sy.model;
import java.util.Date;
public class commandInfo {
private String areaId;
private String chnlNo;
private String iEType;
private String seqNo;
private String executeResult;
private String source;
private String action;
private Integer openTimes;
private String esealIcNo;
private String esealId;
private String esealStatehint;
private String esealStatecode;
private String oldesealId;
private String newesealId;
private String esealKey;
private String actionModel;
private String changeCause;
private Date changeTime;
private String operName;
private String opHint;
public String getAreaId() {
return areaId;
}
public void setAreaId(String areaId) {
this.areaId = areaId == null ? null : areaId.trim();
}
public String getChnlNo() {
return chnlNo;
}
public void setChnlNo(String chnlNo) {
this.chnlNo = chnlNo == null ? null : chnlNo.trim();
}
public String getiEType() {
return iEType;
}
public void setiEType(String iEType) {
this.iEType = iEType == null ? null : iEType.trim();
}
public String getSeqNo() {
return seqNo;
}
public void setSeqNo(String seqNo) {
this.seqNo = seqNo == null ? null : seqNo.trim();
}
public String getExecuteResult() {
return executeResult;
}
public void setExecuteResult(String executeResult) {
this.executeResult = executeResult == null ? null : executeResult.trim();
}
public String getSource() {
return source;
}
public void setSource(String source) {
this.source = source == null ? null : source.trim();
}
public String getAction() {
return action;
}
public void setAction(String action) {
this.action = action == null ? null : action.trim();
}
public Integer getOpenTimes() {
return openTimes;
}
public void setOpenTimes(Integer openTimes) {
this.openTimes = openTimes;
}
public String getEsealIcNo() {
return esealIcNo;
}
public void setEsealIcNo(String esealIcNo) {
this.esealIcNo = esealIcNo == null ? null : esealIcNo.trim();
}
public String getEsealId() {
return esealId;
}
public void setEsealId(String esealId) {
this.esealId = esealId == null ? null : esealId.trim();
}
public String getEsealStatehint() {
return esealStatehint;
}
public void setEsealStatehint(String esealStatehint) {
this.esealStatehint = esealStatehint == null ? null : esealStatehint.trim();
}
public String getEsealStatecode() {
return esealStatecode;
}
public void setEsealStatecode(String esealStatecode) {
this.esealStatecode = esealStatecode == null ? null : esealStatecode.trim();
}
public String getOldesealId() {
return oldesealId;
}
public void setOldesealId(String oldesealId) {
this.oldesealId = oldesealId == null ? null : oldesealId.trim();
}
public String getNewesealI() {
return newesealId;
}
public void setNewesealId(String ewesealId) {
this.newesealId = ewesealId == null ? null : ewesealId.trim();
}
public String getEsealKey() {
return esealKey;
}
public void setEsealKey(String esealKey) {
this.esealKey = esealKey == null ? null : esealKey.trim();
}
public String getActionModel() {
return actionModel;
}
public void setActionModel(String actionModel) {
this.actionModel = actionModel == null ? null : actionModel.trim();
}
public String getChangeCause() {
return changeCause;
}
public void setChangeCause(String changeCause) {
this.changeCause = changeCause == null ? null : changeCause.trim();
}
public Date getChangeTime() {
return changeTime;
}
public void setChangeTime(Date changeTime) {
this.changeTime = changeTime;
}
public String getOperName() {
return operName;
}
public void setOperName(String operName) {
this.operName = operName == null ? null : operName.trim();
}
public String getOpHint() {
return opHint;
}
public void setOpHint(String opHint) {
this.opHint = opHint == null ? null : opHint.trim();
}
}