HisInboud.java
5.04 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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
package cn.csbr.springboot.dao.model;
import org.apache.ibatis.type.JdbcType;
import tk.mybatis.mapper.annotation.ColumnType;
import javax.persistence.Id;
import javax.persistence.Table;
import java.util.Date;
@Table(name = "his_inboud")
public class HisInboud {
/**
* 本表的主键
*/
@Id
private String guid;
/**
* his系统原始的主键
*/
private String hisid;
/**
* 入库时间
*/
@ColumnType(jdbcType = JdbcType.TIMESTAMP)
private Date intime;
/**
* 入库订单号
*/
private String orderno;
/**
* 追溯码
*/
private String tracecode;
/**
* 导入时间
*/
@ColumnType(jdbcType = JdbcType.TIMESTAMP)
private Date importtime;
/**
* 是否入柜
*/
private Boolean ifinbound;
/**
* 标记入柜时间
*/
@ColumnType(jdbcType = JdbcType.TIMESTAMP)
private Date markinboundtime;
/**
* 标记人
*/
private String markuserguid;
/**
* 标记人真实姓名
*/
private String makruserrealname;
/**
* This method returns the value of the 本表的主键
*
* @return guid - 本表的主键
*/
public String getGuid() {
return guid;
}
/**
* This method set the value of the 本表的主键
*
* @param guid 本表的主键
*/
public void setGuid(String guid) {
this.guid = guid;
}
/**
* This method returns the value of the his系统原始的主键
*
* @return hisid - his系统原始的主键
*/
public String getHisid() {
return hisid;
}
/**
* This method set the value of the his系统原始的主键
*
* @param hisid his系统原始的主键
*/
public void setHisid(String hisid) {
this.hisid = hisid;
}
/**
* This method returns the value of the 入库时间
*
* @return intime - 入库时间
*/
public Date getIntime() {
return intime;
}
/**
* This method set the value of the 入库时间
*
* @param intime 入库时间
*/
public void setIntime(Date intime) {
this.intime = intime;
}
/**
* This method returns the value of the 入库订单号
*
* @return orderno - 入库订单号
*/
public String getOrderno() {
return orderno;
}
/**
* This method set the value of the 入库订单号
*
* @param orderno 入库订单号
*/
public void setOrderno(String orderno) {
this.orderno = orderno;
}
/**
* This method returns the value of the 追溯码
*
* @return tracecode - 追溯码
*/
public String getTracecode() {
return tracecode;
}
/**
* This method set the value of the 追溯码
*
* @param tracecode 追溯码
*/
public void setTracecode(String tracecode) {
this.tracecode = tracecode;
}
/**
* This method returns the value of the 导入时间
*
* @return importtime - 导入时间
*/
public Date getImporttime() {
return importtime;
}
/**
* This method set the value of the 导入时间
*
* @param importtime 导入时间
*/
public void setImporttime(Date importtime) {
this.importtime = importtime;
}
/**
* This method returns the value of the 是否入柜
*
* @return ifinbound - 是否入柜
*/
public Boolean getIfinbound() {
return ifinbound;
}
/**
* This method set the value of the 是否入柜
*
* @param ifinbound 是否入柜
*/
public void setIfinbound(Boolean ifinbound) {
this.ifinbound = ifinbound;
}
/**
* This method returns the value of the 标记入柜时间
*
* @return markinboundtime - 标记入柜时间
*/
public Date getMarkinboundtime() {
return markinboundtime;
}
/**
* This method set the value of the 标记入柜时间
*
* @param markinboundtime 标记入柜时间
*/
public void setMarkinboundtime(Date markinboundtime) {
this.markinboundtime = markinboundtime;
}
/**
* This method returns the value of the 标记人
*
* @return markuserguid - 标记人
*/
public String getMarkuserguid() {
return markuserguid;
}
/**
* This method set the value of the 标记人
*
* @param markuserguid 标记人
*/
public void setMarkuserguid(String markuserguid) {
this.markuserguid = markuserguid;
}
/**
* This method returns the value of the 标记人真实姓名
*
* @return makruserrealname - 标记人真实姓名
*/
public String getMakruserrealname() {
return makruserrealname;
}
/**
* This method set the value of the 标记人真实姓名
*
* @param makruserrealname 标记人真实姓名
*/
public void setMakruserrealname(String makruserrealname) {
this.makruserrealname = makruserrealname;
}
}