hjg
2023-11-22 975c04c0181b3da82a79cb04abe6a2f1799eb363
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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
package com.mandi.fendan.persist;
 
import java.io.Serializable;
import java.util.Date;
 
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Index;
import javax.persistence.Table;
import javax.persistence.Temporal;
import javax.persistence.TemporalType;
 
/** 
 * @author cx
 * @version 创建时间:2017年10月23日 
 * 分单详情-物资明细  从erp数据库获取  本地保存
 * 这个不打算用了
 * 类说明 
 */
@Entity
@Table(name="fd_sheetitem",indexes={@Index(columnList="companyNo"),@Index(columnList="tdmx_fdywbh"),@Index(columnList="tdmx_tdbh")})
public class Fd_Bsheetitem implements Serializable {
    
    @Id
    private String id;
    private String companyName;//物流公司
    private String companyNo;//物流公司编号
    private String createName;//建单人
    private String createid;//建单人
    @Temporal(TemporalType.TIMESTAMP)
    private Date ctime;//创建时间
    
    private String barcode;//条码号
    private String tdmx_wlbh;//物料编号
    private String tdmx_wlmc;//物料名称
    private String tdmx_tdfl;//提单分录号
    private String tdmx_tdls;//提单流水号
    private String tdmx_hjzt;//合金状态
    private String tdmx_dwmc;//单位名称
    private String tdmx_pch;//批次号
    private double tdmx_bhse;//不含税金额
    private double tdmx_mz;//毛重
    private double tdmx_pz;//皮重
    private double tdmx_jz;//净重
    private String tdmx_shdw;//收货单位
    private String tdmx_fhdw;//发货单位
    private String tdmx_tdlx;//提单类型
    private int tdmx_sl;//数量
    private String tdmx_ggxh;//规格型号
    private String tdmx_hwbh;//货位编号
    private String tdmx_zpbz;//纸品包装
    
    private int tdmx_sfzc;//装车标志  状态 :1 已装车 0未装车(不显示)
    private int tdmx_fdbz;//分单标志,0未分单/1已分单/2已进厂
    private String tdmx_cph;//分单车牌号
    private String tdmx_zccph;//装车车牌号
    private String tdmx_fdywbh;//分单业务编号
    
    private String tdmx_tdbh;//提单编号
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getBarcode() {
        return barcode;
    }
 
    public void setBarcode(String barcode) {
        this.barcode = barcode;
    }
 
    public String getCompanyName() {
        return companyName;
    }
 
    public void setCompanyName(String companyName) {
        this.companyName = companyName;
    }
 
    public String getCompanyNo() {
        return companyNo;
    }
 
    public void setCompanyNo(String companyNo) {
        this.companyNo = companyNo;
    }
 
    public String getCreateName() {
        return createName;
    }
 
    public void setCreateName(String createName) {
        this.createName = createName;
    }
 
    public String getCreateid() {
        return createid;
    }
 
    public void setCreateid(String createid) {
        this.createid = createid;
    }
 
    public Date getCtime() {
        return ctime;
    }
 
    public void setCtime(Date ctime) {
        this.ctime = ctime;
    }
 
    public String getTdmx_wlbh() {
        return tdmx_wlbh;
    }
 
    public void setTdmx_wlbh(String tdmx_wlbh) {
        this.tdmx_wlbh = tdmx_wlbh;
    }
 
    public String getTdmx_wlmc() {
        return tdmx_wlmc;
    }
 
    public void setTdmx_wlmc(String tdmx_wlmc) {
        this.tdmx_wlmc = tdmx_wlmc;
    }
 
    public String getTdmx_tdfl() {
        return tdmx_tdfl;
    }
 
    public void setTdmx_tdfl(String tdmx_tdfl) {
        this.tdmx_tdfl = tdmx_tdfl;
    }
 
    public String getTdmx_tdls() {
        return tdmx_tdls;
    }
 
    public void setTdmx_tdls(String tdmx_tdls) {
        this.tdmx_tdls = tdmx_tdls;
    }
 
    public String getTdmx_hjzt() {
        return tdmx_hjzt;
    }
 
    public void setTdmx_hjzt(String tdmx_hjzt) {
        this.tdmx_hjzt = tdmx_hjzt;
    }
    public String getTdmx_dwmc() {
        return tdmx_dwmc;
    }
 
    public void setTdmx_dwmc(String tdmx_dwmc) {
        this.tdmx_dwmc = tdmx_dwmc;
    }
 
    public String getTdmx_pch() {
        return tdmx_pch;
    }
 
    public void setTdmx_pch(String tdmx_pch) {
        this.tdmx_pch = tdmx_pch;
    }
 
    public double getTdmx_bhse() {
        return tdmx_bhse;
    }
 
    public void setTdmx_bhse(double tdmx_bhse) {
        this.tdmx_bhse = tdmx_bhse;
    }
 
    public double getTdmx_mz() {
        return tdmx_mz;
    }
 
    public void setTdmx_mz(double tdmx_mz) {
        this.tdmx_mz = tdmx_mz;
    }
 
    public double getTdmx_pz() {
        return tdmx_pz;
    }
 
    public void setTdmx_pz(double tdmx_pz) {
        this.tdmx_pz = tdmx_pz;
    }
 
    public double getTdmx_jz() {
        return tdmx_jz;
    }
 
    public void setTdmx_jz(double tdmx_jz) {
        this.tdmx_jz = tdmx_jz;
    }
 
    public String getTdmx_shdw() {
        return tdmx_shdw;
    }
 
    public void setTdmx_shdw(String tdmx_shdw) {
        this.tdmx_shdw = tdmx_shdw;
    }
 
    public String getTdmx_fhdw() {
        return tdmx_fhdw;
    }
 
    public void setTdmx_fhdw(String tdmx_fhdw) {
        this.tdmx_fhdw = tdmx_fhdw;
    }
 
    public String getTdmx_tdlx() {
        return tdmx_tdlx;
    }
 
    public void setTdmx_tdlx(String tdmx_tdlx) {
        this.tdmx_tdlx = tdmx_tdlx;
    }
 
    public int getTdmx_sl() {
        return tdmx_sl;
    }
 
    public void setTdmx_sl(int tdmx_sl) {
        this.tdmx_sl = tdmx_sl;
    }
 
    public String getTdmx_ggxh() {
        return tdmx_ggxh;
    }
 
    public void setTdmx_ggxh(String tdmx_ggxh) {
        this.tdmx_ggxh = tdmx_ggxh;
    }
    public int getTdmx_sfzc() {
        return tdmx_sfzc;
    }
 
    public void setTdmx_sfzc(int tdmx_sfzc) {
        this.tdmx_sfzc = tdmx_sfzc;
    }
 
    public int getTdmx_fdbz() {
        return tdmx_fdbz;
    }
 
    public void setTdmx_fdbz(int tdmx_fdbz) {
        this.tdmx_fdbz = tdmx_fdbz;
    }
 
    public String getTdmx_zccph() {
        return tdmx_zccph;
    }
 
    public void setTdmx_zccph(String tdmx_zccph) {
        this.tdmx_zccph = tdmx_zccph;
    }
 
    public String getTdmx_fdywbh() {
        return tdmx_fdywbh;
    }
 
    public void setTdmx_fdywbh(String tdmx_fdywbh) {
        this.tdmx_fdywbh = tdmx_fdywbh;
    }
 
    public String getTdmx_cph() {
        return tdmx_cph;
    }
 
    public void setTdmx_cph(String tdmx_cph) {
        this.tdmx_cph = tdmx_cph;
    }
 
    public String getTdmx_tdbh() {
        return tdmx_tdbh;
    }
 
    public void setTdmx_tdbh(String tdmx_tdbh) {
        this.tdmx_tdbh = tdmx_tdbh;
    }
 
    public String getTdmx_hwbh() {
        return tdmx_hwbh;
    }
 
    public void setTdmx_hwbh(String tdmx_hwbh) {
        this.tdmx_hwbh = tdmx_hwbh;
    }
 
    public String getTdmx_zpbz() {
        return tdmx_zpbz;
    }
 
    public void setTdmx_zpbz(String tdmx_zpbz) {
        this.tdmx_zpbz = tdmx_zpbz;
    }
 
}