SpdWvdetailScend.java
3.47 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
package cn.csbr.springboot.dao.model;
import cn.hutool.core.date.DateTime;
import javax.persistence.Column;
import javax.persistence.Id;
import javax.persistence.Table;
@Table(name = "spd_wvdetail_scend")
public class SpdWvdetailScend {
/**
* 系统唯一标识
*/
@Id
@Column(name = "GUID")
private String guid;
@Column(name = "RDGUID")
private String rdguid;
/**
* 单据编码
*/
@Column(name = "BillNo")
private String billno;
/**
* 行号
*/
@Column(name = "RowNo")
private Integer rowno;
/**
* 条码
*/
@Column(name = "BarCode")
private String barcode;
@Column(name = "RfidUid")
private String rfiduid;
@Column(name = "PrintState")
private String printstate;
@Column(name = "BillState")
private String billstate;
@Column(name = "IsDelete")
private String isDelete;
@Column(name="RkTime")
public DateTime RkTime;
public String getIsDelete() {
return isDelete;
}
public void setIsDelete(String isDelete) {
this.isDelete = isDelete;
}
/**
* 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;
}
/**
* @return RDGUID
*/
public String getRdguid() {
return rdguid;
}
/**
* @param rdguid
*/
public void setRdguid(String rdguid) {
this.rdguid = rdguid;
}
/**
* This method returns the value of the 单据编码
*
* @return BillNo - 单据编码
*/
public String getBillno() {
return billno;
}
/**
* This method set the value of the 单据编码
*
* @param billno 单据编码
*/
public void setBillno(String billno) {
this.billno = billno;
}
/**
* This method returns the value of the 行号
*
* @return RowNo - 行号
*/
public Integer getRowno() {
return rowno;
}
/**
* This method set the value of the 行号
*
* @param rowno 行号
*/
public void setRowno(Integer rowno) {
this.rowno = rowno;
}
/**
* This method returns the value of the 条码
*
* @return BarCode - 条码
*/
public String getBarcode() {
return barcode;
}
/**
* This method set the value of the 条码
*
* @param barcode 条码
*/
public void setBarcode(String barcode) {
this.barcode = barcode;
}
/**
* @return RfidUid
*/
public String getRfiduid() {
return rfiduid;
}
/**
* @param rfiduid
*/
public void setRfiduid(String rfiduid) {
this.rfiduid = rfiduid;
}
/**
* @return PrintState
*/
public String getPrintstate() {
return printstate;
}
/**
* @param printstate
*/
public void setPrintstate(String printstate) {
this.printstate = printstate;
}
public String getBillstate() {
return billstate;
}
public void setBillstate(String billstate) {
this.billstate = billstate;
}
public DateTime getRkTime() {
return RkTime;
}
public void setRkTime(DateTime rkTime) {
RkTime = rkTime;
}
}