提交 | 用户 | 时间
|
58d006
|
1 |
package com.mandi.fendan.persist; |
A |
2 |
|
|
3 |
import java.io.Serializable; |
|
4 |
import java.util.Date; |
|
5 |
|
|
6 |
import javax.persistence.Entity; |
|
7 |
import javax.persistence.Id; |
|
8 |
import javax.persistence.Index; |
|
9 |
import javax.persistence.Table; |
|
10 |
import javax.persistence.Temporal; |
|
11 |
import javax.persistence.TemporalType; |
|
12 |
|
|
13 |
/** |
|
14 |
* @author cx |
|
15 |
* @version 创建时间:2017年10月23日 |
|
16 |
* 分单详情-物资明细 从erp数据库获取 本地保存 |
|
17 |
* 这个不打算用了 |
|
18 |
* 类说明 |
|
19 |
*/ |
|
20 |
@Entity |
|
21 |
@Table(name="fd_sheetitem",indexes={@Index(columnList="companyNo"),@Index(columnList="tdmx_fdywbh"),@Index(columnList="tdmx_tdbh")}) |
|
22 |
public class Fd_Bsheetitem implements Serializable { |
|
23 |
|
|
24 |
@Id |
|
25 |
private String id; |
|
26 |
private String companyName;//物流公司 |
|
27 |
private String companyNo;//物流公司编号 |
|
28 |
private String createName;//建单人 |
|
29 |
private String createid;//建单人 |
|
30 |
@Temporal(TemporalType.TIMESTAMP) |
|
31 |
private Date ctime;//创建时间 |
|
32 |
|
|
33 |
private String barcode;//条码号 |
|
34 |
private String tdmx_wlbh;//物料编号 |
|
35 |
private String tdmx_wlmc;//物料名称 |
|
36 |
private String tdmx_tdfl;//提单分录号 |
|
37 |
private String tdmx_tdls;//提单流水号 |
|
38 |
private String tdmx_hjzt;//合金状态 |
|
39 |
private String tdmx_dwmc;//单位名称 |
|
40 |
private String tdmx_pch;//批次号 |
|
41 |
private double tdmx_bhse;//不含税金额 |
|
42 |
private double tdmx_mz;//毛重 |
|
43 |
private double tdmx_pz;//皮重 |
|
44 |
private double tdmx_jz;//净重 |
|
45 |
private String tdmx_shdw;//收货单位 |
|
46 |
private String tdmx_fhdw;//发货单位 |
|
47 |
private String tdmx_tdlx;//提单类型 |
|
48 |
private int tdmx_sl;//数量 |
|
49 |
private String tdmx_ggxh;//规格型号 |
|
50 |
private String tdmx_hwbh;//货位编号 |
|
51 |
private String tdmx_zpbz;//纸品包装 |
|
52 |
|
|
53 |
private int tdmx_sfzc;//装车标志 状态 :1 已装车 0未装车(不显示) |
|
54 |
private int tdmx_fdbz;//分单标志,0未分单/1已分单/2已进厂 |
|
55 |
private String tdmx_cph;//分单车牌号 |
|
56 |
private String tdmx_zccph;//装车车牌号 |
|
57 |
private String tdmx_fdywbh;//分单业务编号 |
|
58 |
|
|
59 |
private String tdmx_tdbh;//提单编号 |
|
60 |
|
|
61 |
public String getId() { |
|
62 |
return id; |
|
63 |
} |
|
64 |
|
|
65 |
public void setId(String id) { |
|
66 |
this.id = id; |
|
67 |
} |
|
68 |
|
|
69 |
public String getBarcode() { |
|
70 |
return barcode; |
|
71 |
} |
|
72 |
|
|
73 |
public void setBarcode(String barcode) { |
|
74 |
this.barcode = barcode; |
|
75 |
} |
|
76 |
|
|
77 |
public String getCompanyName() { |
|
78 |
return companyName; |
|
79 |
} |
|
80 |
|
|
81 |
public void setCompanyName(String companyName) { |
|
82 |
this.companyName = companyName; |
|
83 |
} |
|
84 |
|
|
85 |
public String getCompanyNo() { |
|
86 |
return companyNo; |
|
87 |
} |
|
88 |
|
|
89 |
public void setCompanyNo(String companyNo) { |
|
90 |
this.companyNo = companyNo; |
|
91 |
} |
|
92 |
|
|
93 |
public String getCreateName() { |
|
94 |
return createName; |
|
95 |
} |
|
96 |
|
|
97 |
public void setCreateName(String createName) { |
|
98 |
this.createName = createName; |
|
99 |
} |
|
100 |
|
|
101 |
public String getCreateid() { |
|
102 |
return createid; |
|
103 |
} |
|
104 |
|
|
105 |
public void setCreateid(String createid) { |
|
106 |
this.createid = createid; |
|
107 |
} |
|
108 |
|
|
109 |
public Date getCtime() { |
|
110 |
return ctime; |
|
111 |
} |
|
112 |
|
|
113 |
public void setCtime(Date ctime) { |
|
114 |
this.ctime = ctime; |
|
115 |
} |
|
116 |
|
|
117 |
public String getTdmx_wlbh() { |
|
118 |
return tdmx_wlbh; |
|
119 |
} |
|
120 |
|
|
121 |
public void setTdmx_wlbh(String tdmx_wlbh) { |
|
122 |
this.tdmx_wlbh = tdmx_wlbh; |
|
123 |
} |
|
124 |
|
|
125 |
public String getTdmx_wlmc() { |
|
126 |
return tdmx_wlmc; |
|
127 |
} |
|
128 |
|
|
129 |
public void setTdmx_wlmc(String tdmx_wlmc) { |
|
130 |
this.tdmx_wlmc = tdmx_wlmc; |
|
131 |
} |
|
132 |
|
|
133 |
public String getTdmx_tdfl() { |
|
134 |
return tdmx_tdfl; |
|
135 |
} |
|
136 |
|
|
137 |
public void setTdmx_tdfl(String tdmx_tdfl) { |
|
138 |
this.tdmx_tdfl = tdmx_tdfl; |
|
139 |
} |
|
140 |
|
|
141 |
public String getTdmx_tdls() { |
|
142 |
return tdmx_tdls; |
|
143 |
} |
|
144 |
|
|
145 |
public void setTdmx_tdls(String tdmx_tdls) { |
|
146 |
this.tdmx_tdls = tdmx_tdls; |
|
147 |
} |
|
148 |
|
|
149 |
public String getTdmx_hjzt() { |
|
150 |
return tdmx_hjzt; |
|
151 |
} |
|
152 |
|
|
153 |
public void setTdmx_hjzt(String tdmx_hjzt) { |
|
154 |
this.tdmx_hjzt = tdmx_hjzt; |
|
155 |
} |
|
156 |
public String getTdmx_dwmc() { |
|
157 |
return tdmx_dwmc; |
|
158 |
} |
|
159 |
|
|
160 |
public void setTdmx_dwmc(String tdmx_dwmc) { |
|
161 |
this.tdmx_dwmc = tdmx_dwmc; |
|
162 |
} |
|
163 |
|
|
164 |
public String getTdmx_pch() { |
|
165 |
return tdmx_pch; |
|
166 |
} |
|
167 |
|
|
168 |
public void setTdmx_pch(String tdmx_pch) { |
|
169 |
this.tdmx_pch = tdmx_pch; |
|
170 |
} |
|
171 |
|
|
172 |
public double getTdmx_bhse() { |
|
173 |
return tdmx_bhse; |
|
174 |
} |
|
175 |
|
|
176 |
public void setTdmx_bhse(double tdmx_bhse) { |
|
177 |
this.tdmx_bhse = tdmx_bhse; |
|
178 |
} |
|
179 |
|
|
180 |
public double getTdmx_mz() { |
|
181 |
return tdmx_mz; |
|
182 |
} |
|
183 |
|
|
184 |
public void setTdmx_mz(double tdmx_mz) { |
|
185 |
this.tdmx_mz = tdmx_mz; |
|
186 |
} |
|
187 |
|
|
188 |
public double getTdmx_pz() { |
|
189 |
return tdmx_pz; |
|
190 |
} |
|
191 |
|
|
192 |
public void setTdmx_pz(double tdmx_pz) { |
|
193 |
this.tdmx_pz = tdmx_pz; |
|
194 |
} |
|
195 |
|
|
196 |
public double getTdmx_jz() { |
|
197 |
return tdmx_jz; |
|
198 |
} |
|
199 |
|
|
200 |
public void setTdmx_jz(double tdmx_jz) { |
|
201 |
this.tdmx_jz = tdmx_jz; |
|
202 |
} |
|
203 |
|
|
204 |
public String getTdmx_shdw() { |
|
205 |
return tdmx_shdw; |
|
206 |
} |
|
207 |
|
|
208 |
public void setTdmx_shdw(String tdmx_shdw) { |
|
209 |
this.tdmx_shdw = tdmx_shdw; |
|
210 |
} |
|
211 |
|
|
212 |
public String getTdmx_fhdw() { |
|
213 |
return tdmx_fhdw; |
|
214 |
} |
|
215 |
|
|
216 |
public void setTdmx_fhdw(String tdmx_fhdw) { |
|
217 |
this.tdmx_fhdw = tdmx_fhdw; |
|
218 |
} |
|
219 |
|
|
220 |
public String getTdmx_tdlx() { |
|
221 |
return tdmx_tdlx; |
|
222 |
} |
|
223 |
|
|
224 |
public void setTdmx_tdlx(String tdmx_tdlx) { |
|
225 |
this.tdmx_tdlx = tdmx_tdlx; |
|
226 |
} |
|
227 |
|
|
228 |
public int getTdmx_sl() { |
|
229 |
return tdmx_sl; |
|
230 |
} |
|
231 |
|
|
232 |
public void setTdmx_sl(int tdmx_sl) { |
|
233 |
this.tdmx_sl = tdmx_sl; |
|
234 |
} |
|
235 |
|
|
236 |
public String getTdmx_ggxh() { |
|
237 |
return tdmx_ggxh; |
|
238 |
} |
|
239 |
|
|
240 |
public void setTdmx_ggxh(String tdmx_ggxh) { |
|
241 |
this.tdmx_ggxh = tdmx_ggxh; |
|
242 |
} |
|
243 |
public int getTdmx_sfzc() { |
|
244 |
return tdmx_sfzc; |
|
245 |
} |
|
246 |
|
|
247 |
public void setTdmx_sfzc(int tdmx_sfzc) { |
|
248 |
this.tdmx_sfzc = tdmx_sfzc; |
|
249 |
} |
|
250 |
|
|
251 |
public int getTdmx_fdbz() { |
|
252 |
return tdmx_fdbz; |
|
253 |
} |
|
254 |
|
|
255 |
public void setTdmx_fdbz(int tdmx_fdbz) { |
|
256 |
this.tdmx_fdbz = tdmx_fdbz; |
|
257 |
} |
|
258 |
|
|
259 |
public String getTdmx_zccph() { |
|
260 |
return tdmx_zccph; |
|
261 |
} |
|
262 |
|
|
263 |
public void setTdmx_zccph(String tdmx_zccph) { |
|
264 |
this.tdmx_zccph = tdmx_zccph; |
|
265 |
} |
|
266 |
|
|
267 |
public String getTdmx_fdywbh() { |
|
268 |
return tdmx_fdywbh; |
|
269 |
} |
|
270 |
|
|
271 |
public void setTdmx_fdywbh(String tdmx_fdywbh) { |
|
272 |
this.tdmx_fdywbh = tdmx_fdywbh; |
|
273 |
} |
|
274 |
|
|
275 |
public String getTdmx_cph() { |
|
276 |
return tdmx_cph; |
|
277 |
} |
|
278 |
|
|
279 |
public void setTdmx_cph(String tdmx_cph) { |
|
280 |
this.tdmx_cph = tdmx_cph; |
|
281 |
} |
|
282 |
|
|
283 |
public String getTdmx_tdbh() { |
|
284 |
return tdmx_tdbh; |
|
285 |
} |
|
286 |
|
|
287 |
public void setTdmx_tdbh(String tdmx_tdbh) { |
|
288 |
this.tdmx_tdbh = tdmx_tdbh; |
|
289 |
} |
|
290 |
|
|
291 |
public String getTdmx_hwbh() { |
|
292 |
return tdmx_hwbh; |
|
293 |
} |
|
294 |
|
|
295 |
public void setTdmx_hwbh(String tdmx_hwbh) { |
|
296 |
this.tdmx_hwbh = tdmx_hwbh; |
|
297 |
} |
|
298 |
|
|
299 |
public String getTdmx_zpbz() { |
|
300 |
return tdmx_zpbz; |
|
301 |
} |
|
302 |
|
|
303 |
public void setTdmx_zpbz(String tdmx_zpbz) { |
|
304 |
this.tdmx_zpbz = tdmx_zpbz; |
|
305 |
} |
|
306 |
|
|
307 |
} |