|
@@ -5,30 +5,37 @@ import java.util.Date;
|
5
|
5
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
6
|
6
|
|
7
|
7
|
public class BusinessNoticeReceive {
|
8
|
|
-
|
9
|
|
- //表里新增字段
|
10
|
|
- private String lsxzzbdh;
|
11
|
|
- private String lssl;
|
12
|
|
- private Integer hzqlsxzdm;
|
13
|
|
- @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
14
|
|
- private Date hzrq;//划转日期
|
15
|
|
- private String ccshr;
|
16
|
|
- private String zjshr;
|
17
|
|
- private String tjshr;
|
18
|
|
- private String kjshr;
|
19
|
|
- private String ldshr;
|
20
|
|
- private String bz;
|
21
|
|
- private Integer auditState;
|
22
|
|
- private Integer isNotice;
|
23
|
|
- private String pzmc;
|
24
|
|
- private Integer isSheet;
|
25
|
|
-
|
26
|
|
-
|
27
|
8
|
|
|
9
|
+ //表里新增字段
|
|
10
|
+ private String lsxzzbdh;
|
|
11
|
+ private String lssl;
|
|
12
|
+ private Integer hzqlsxzdm;
|
|
13
|
+ @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
14
|
+ private Date hzrq;//划转日期
|
|
15
|
+ private String ccshr;
|
|
16
|
+ private String zjshr;
|
|
17
|
+ private String tjshr;
|
|
18
|
+ private String kjshr;
|
|
19
|
+ private String ldshr;
|
|
20
|
+ private String bz;
|
|
21
|
+ private Integer auditState;
|
|
22
|
+ private Integer isNotice;
|
|
23
|
+ private String pzmc;
|
|
24
|
+ private Integer isSheet;
|
|
25
|
+ private String htbh;
|
|
26
|
+
|
|
27
|
+ /**
|
|
28
|
+ * 0是性质转变单
|
|
29
|
+ * @return
|
|
30
|
+ */
|
28
|
31
|
public Integer getIsSheet() {
|
29
|
32
|
return isSheet;
|
30
|
33
|
}
|
31
|
34
|
|
|
35
|
+ /**
|
|
36
|
+ * 0是性质转变单
|
|
37
|
+ * @param isSheet
|
|
38
|
+ */
|
32
|
39
|
public void setIsSheet(Integer isSheet) {
|
33
|
40
|
this.isSheet = isSheet;
|
34
|
41
|
}
|
|
@@ -41,42 +48,82 @@ public class BusinessNoticeReceive {
|
41
|
48
|
this.pzmc = pzmc;
|
42
|
49
|
}
|
43
|
50
|
|
|
51
|
+ /**
|
|
52
|
+ * 是否引用(0:否,1:是)
|
|
53
|
+ * @return
|
|
54
|
+ */
|
44
|
55
|
public Integer getIsNotice() {
|
45
|
56
|
return isNotice;
|
46
|
57
|
}
|
47
|
58
|
|
|
59
|
+ /**
|
|
60
|
+ * 是否引用(0:否,1:是)
|
|
61
|
+ * @param isNotice
|
|
62
|
+ */
|
48
|
63
|
public void setIsNotice(Integer isNotice) {
|
49
|
64
|
this.isNotice = isNotice;
|
50
|
65
|
}
|
51
|
66
|
|
|
67
|
+ /**
|
|
68
|
+ * 粮食性质转变单单号
|
|
69
|
+ * @return
|
|
70
|
+ */
|
52
|
71
|
public String getLsxzzbdh() {
|
53
|
72
|
return lsxzzbdh;
|
54
|
73
|
}
|
55
|
74
|
|
|
75
|
+ /**
|
|
76
|
+ * 粮食性质转变单单号
|
|
77
|
+ * @param lsxzzbdh
|
|
78
|
+ */
|
56
|
79
|
public void setLsxzzbdh(String lsxzzbdh) {
|
57
|
80
|
this.lsxzzbdh = lsxzzbdh;
|
58
|
81
|
}
|
59
|
82
|
|
|
83
|
+ /**
|
|
84
|
+ * 库存数量
|
|
85
|
+ * @return
|
|
86
|
+ */
|
60
|
87
|
public String getLssl() {
|
61
|
88
|
return lssl;
|
62
|
89
|
}
|
63
|
90
|
|
|
91
|
+ /**
|
|
92
|
+ * 库存数量
|
|
93
|
+ * @param lssl
|
|
94
|
+ */
|
64
|
95
|
public void setLssl(String lssl) {
|
65
|
96
|
this.lssl = lssl;
|
66
|
97
|
}
|
67
|
98
|
|
|
99
|
+ /**
|
|
100
|
+ * 划转后粮食性质
|
|
101
|
+ * @return
|
|
102
|
+ */
|
68
|
103
|
public Integer getHzqlsxzdm() {
|
69
|
104
|
return hzqlsxzdm;
|
70
|
105
|
}
|
71
|
106
|
|
|
107
|
+ /**
|
|
108
|
+ * 划转后粮食性质
|
|
109
|
+ * @param hzqlsxzdm
|
|
110
|
+ */
|
72
|
111
|
public void setHzqlsxzdm(Integer hzqlsxzdm) {
|
73
|
112
|
this.hzqlsxzdm = hzqlsxzdm;
|
74
|
113
|
}
|
75
|
114
|
|
|
115
|
+ /**
|
|
116
|
+ * 划转时间
|
|
117
|
+ * @return
|
|
118
|
+ */
|
76
|
119
|
public Date getHzrq() {
|
77
|
120
|
return hzrq;
|
78
|
121
|
}
|
79
|
122
|
|
|
123
|
+ /**
|
|
124
|
+ * 划转时间
|
|
125
|
+ * @param hzrq
|
|
126
|
+ */
|
80
|
127
|
public void setHzrq(Date hzrq) {
|
81
|
128
|
this.hzrq = hzrq;
|
82
|
129
|
}
|
|
@@ -129,111 +176,148 @@ public class BusinessNoticeReceive {
|
129
|
176
|
this.bz = bz;
|
130
|
177
|
}
|
131
|
178
|
|
|
179
|
+ /**
|
|
180
|
+ * 审批状态(0:仓储部经理审批,1:质检部经理审批,2:统计经理审批,3:会计审批,4:库领导审批,5:审批结束)
|
|
181
|
+ * @return
|
|
182
|
+ */
|
132
|
183
|
public Integer getAuditState() {
|
133
|
184
|
return auditState;
|
134
|
185
|
}
|
135
|
186
|
|
|
187
|
+ /**
|
|
188
|
+ * 审批状态(0:仓储部经理审批,1:质检部经理审批,2:统计经理审批,3:会计审批,4:库领导审批,5:审批结束)
|
|
189
|
+ * @param auditState
|
|
190
|
+ */
|
136
|
191
|
public void setAuditState(Integer auditState) {
|
137
|
192
|
this.auditState = auditState;
|
138
|
193
|
}
|
139
|
194
|
|
140
|
|
- //业务字段
|
141
|
|
- private String outCount;
|
142
|
|
- private String outRemainingNumber;
|
143
|
|
- private boolean checked;
|
144
|
|
- private String inCount;
|
145
|
|
- private String remainingNumber;
|
146
|
|
- private boolean selected;
|
147
|
|
-
|
148
|
|
-
|
149
|
|
-
|
150
|
|
-
|
151
|
|
-
|
152
|
|
- public boolean isSelected() {
|
153
|
|
- return selected;
|
154
|
|
- }
|
|
195
|
+ //业务字段
|
|
196
|
+ private String outCount;
|
|
197
|
+ private String outRemainingNumber;
|
|
198
|
+ private boolean checked;
|
|
199
|
+ private String inCount;
|
|
200
|
+ private String remainingNumber;
|
|
201
|
+ private boolean selected;
|
155
|
202
|
|
156
|
|
- public void setSelected(boolean selected) {
|
157
|
|
- this.selected = selected;
|
158
|
|
- }
|
|
203
|
+ public boolean isSelected() {
|
|
204
|
+ return selected;
|
|
205
|
+ }
|
159
|
206
|
|
160
|
|
- public String getInCount() {
|
161
|
|
- return inCount;
|
162
|
|
- }
|
|
207
|
+ public void setSelected(boolean selected) {
|
|
208
|
+ this.selected = selected;
|
|
209
|
+ }
|
163
|
210
|
|
164
|
|
- public void setInCount(String inCount) {
|
165
|
|
- this.inCount = inCount;
|
166
|
|
- }
|
|
211
|
+ public String getInCount() {
|
|
212
|
+ return inCount;
|
|
213
|
+ }
|
167
|
214
|
|
168
|
|
- public String getRemainingNumber() {
|
169
|
|
- return remainingNumber;
|
170
|
|
- }
|
|
215
|
+ public void setInCount(String inCount) {
|
|
216
|
+ this.inCount = inCount;
|
|
217
|
+ }
|
171
|
218
|
|
172
|
|
- public void setRemainingNumber(String remainingNumber) {
|
173
|
|
- this.remainingNumber = remainingNumber;
|
174
|
|
- }
|
|
219
|
+ public String getRemainingNumber() {
|
|
220
|
+ return remainingNumber;
|
|
221
|
+ }
|
175
|
222
|
|
176
|
|
- public boolean isChecked() {
|
177
|
|
- return checked;
|
178
|
|
- }
|
|
223
|
+ public void setRemainingNumber(String remainingNumber) {
|
|
224
|
+ this.remainingNumber = remainingNumber;
|
|
225
|
+ }
|
179
|
226
|
|
180
|
|
- public void setChecked(boolean checked) {
|
181
|
|
- this.checked = checked;
|
182
|
|
- }
|
|
227
|
+ public boolean isChecked() {
|
|
228
|
+ return checked;
|
|
229
|
+ }
|
183
|
230
|
|
184
|
|
- public String getOutCount() {
|
185
|
|
- return outCount;
|
186
|
|
- }
|
|
231
|
+ public void setChecked(boolean checked) {
|
|
232
|
+ this.checked = checked;
|
|
233
|
+ }
|
187
|
234
|
|
188
|
|
- public void setOutCount(String outCount) {
|
189
|
|
- this.outCount = outCount;
|
190
|
|
- }
|
|
235
|
+ public String getOutCount() {
|
|
236
|
+ return outCount;
|
|
237
|
+ }
|
191
|
238
|
|
192
|
|
- public String getOutRemainingNumber() {
|
193
|
|
- return outRemainingNumber;
|
194
|
|
- }
|
|
239
|
+ public void setOutCount(String outCount) {
|
|
240
|
+ this.outCount = outCount;
|
|
241
|
+ }
|
195
|
242
|
|
196
|
|
- public void setOutRemainingNumber(String outRemainingNumber) {
|
197
|
|
- this.outRemainingNumber = outRemainingNumber;
|
198
|
|
- }
|
199
|
|
-
|
200
|
|
- //表里面新增的字段
|
201
|
|
- private Integer grainAnnual;//收获年度
|
202
|
|
- private Integer productiveYear;//生产年份
|
203
|
|
- private Integer grainProducingArea;//粮油产地
|
204
|
|
- @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
205
|
|
- private Date inputTime;//入库时间
|
206
|
|
-
|
207
|
|
-
|
208
|
|
- public Integer getGrainAnnual() {
|
209
|
|
- return grainAnnual;
|
210
|
|
- }
|
211
|
|
-
|
212
|
|
- public void setGrainAnnual(Integer grainAnnual) {
|
213
|
|
- this.grainAnnual = grainAnnual;
|
214
|
|
- }
|
215
|
|
- public Integer getProductiveYear() {
|
216
|
|
- return productiveYear;
|
217
|
|
- }
|
218
|
|
-
|
219
|
|
- public void setProductiveYear(Integer productiveYear) {
|
220
|
|
- this.productiveYear = productiveYear;
|
221
|
|
- }
|
222
|
|
- public Integer getGrainProducingArea() {
|
223
|
|
- return grainProducingArea;
|
224
|
|
- }
|
225
|
|
-
|
226
|
|
- public void setGrainProducingArea(Integer grainProducingArea) {
|
227
|
|
- this.grainProducingArea = grainProducingArea;
|
228
|
|
- }
|
229
|
|
-
|
230
|
|
- public Date getInputTime() {
|
231
|
|
- return inputTime;
|
232
|
|
- }
|
233
|
|
-
|
234
|
|
- public void setInputTime(Date inputTime) {
|
235
|
|
- this.inputTime = inputTime;
|
236
|
|
- }
|
|
243
|
+ public String getOutRemainingNumber() {
|
|
244
|
+ return outRemainingNumber;
|
|
245
|
+ }
|
|
246
|
+
|
|
247
|
+ public void setOutRemainingNumber(String outRemainingNumber) {
|
|
248
|
+ this.outRemainingNumber = outRemainingNumber;
|
|
249
|
+ }
|
|
250
|
+
|
|
251
|
+ //表里面新增的字段
|
|
252
|
+ private Integer grainAnnual;//收获年度
|
|
253
|
+ private Integer productiveYear;//生产年份
|
|
254
|
+ private Integer grainProducingArea;//粮油产地
|
|
255
|
+ @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
256
|
+ private Date inputTime;//入库时间
|
|
257
|
+
|
|
258
|
+ /**
|
|
259
|
+ * 收获年度
|
|
260
|
+ * @return
|
|
261
|
+ */
|
|
262
|
+ public Integer getGrainAnnual() {
|
|
263
|
+ return grainAnnual;
|
|
264
|
+ }
|
|
265
|
+
|
|
266
|
+ /**
|
|
267
|
+ * 收获年度
|
|
268
|
+ * @param grainAnnual
|
|
269
|
+ */
|
|
270
|
+ public void setGrainAnnual(Integer grainAnnual) {
|
|
271
|
+ this.grainAnnual = grainAnnual;
|
|
272
|
+ }
|
|
273
|
+
|
|
274
|
+ /**
|
|
275
|
+ * 生产年份
|
|
276
|
+ * @return
|
|
277
|
+ */
|
|
278
|
+ public Integer getProductiveYear() {
|
|
279
|
+ return productiveYear;
|
|
280
|
+ }
|
|
281
|
+
|
|
282
|
+ /**
|
|
283
|
+ * 生产年份
|
|
284
|
+ * @param productiveYear
|
|
285
|
+ */
|
|
286
|
+ public void setProductiveYear(Integer productiveYear) {
|
|
287
|
+ this.productiveYear = productiveYear;
|
|
288
|
+ }
|
|
289
|
+
|
|
290
|
+ /**
|
|
291
|
+ * 产地
|
|
292
|
+ * @return
|
|
293
|
+ */
|
|
294
|
+ public Integer getGrainProducingArea() {
|
|
295
|
+ return grainProducingArea;
|
|
296
|
+ }
|
|
297
|
+
|
|
298
|
+ /**
|
|
299
|
+ * 产地
|
|
300
|
+ * @param grainProducingArea
|
|
301
|
+ */
|
|
302
|
+ public void setGrainProducingArea(Integer grainProducingArea) {
|
|
303
|
+ this.grainProducingArea = grainProducingArea;
|
|
304
|
+ }
|
|
305
|
+
|
|
306
|
+ /**
|
|
307
|
+ * 入库时间
|
|
308
|
+ * @return
|
|
309
|
+ */
|
|
310
|
+ public Date getInputTime() {
|
|
311
|
+ return inputTime;
|
|
312
|
+ }
|
|
313
|
+
|
|
314
|
+ /**
|
|
315
|
+ * 入库时间
|
|
316
|
+ * @param inputTime
|
|
317
|
+ */
|
|
318
|
+ public void setInputTime(Date inputTime) {
|
|
319
|
+ this.inputTime = inputTime;
|
|
320
|
+ }
|
237
|
321
|
|
238
|
322
|
|
239
|
323
|
|
|
@@ -439,96 +523,60 @@ public class BusinessNoticeReceive {
|
439
|
523
|
}
|
440
|
524
|
|
441
|
525
|
/**
|
442
|
|
- * This method was generated by MyBatis Generator.
|
443
|
|
- * This method returns the value of the database column business_notice_receive.crktype
|
444
|
|
- *
|
445
|
|
- * @return the value of business_notice_receive.crktype
|
446
|
|
- *
|
447
|
|
- * @mbggenerated Wed Jul 08 09:57:43 CST 2020
|
|
526
|
+ * 出入库类型(1:入库,3:出库,13:出入库)
|
448
|
527
|
*/
|
449
|
528
|
public String getCrktype() {
|
450
|
529
|
return crktype;
|
451
|
530
|
}
|
452
|
531
|
|
453
|
532
|
/**
|
454
|
|
- * This method was generated by MyBatis Generator.
|
455
|
|
- * This method sets the value of the database column business_notice_receive.crktype
|
456
|
|
- *
|
457
|
|
- * @param crktype the value for business_notice_receive.crktype
|
458
|
|
- *
|
459
|
|
- * @mbggenerated Wed Jul 08 09:57:43 CST 2020
|
|
533
|
+ * 出入库类型(1:入库,3:出库,13:出入库)
|
|
534
|
+ * @param crktype
|
460
|
535
|
*/
|
461
|
536
|
public void setCrktype(String crktype) {
|
462
|
537
|
this.crktype = crktype == null ? null : crktype.trim();
|
463
|
538
|
}
|
464
|
539
|
|
465
|
540
|
/**
|
466
|
|
- * This method was generated by MyBatis Generator.
|
467
|
|
- * This method returns the value of the database column business_notice_receive.contract_number
|
468
|
|
- *
|
469
|
|
- * @return the value of business_notice_receive.contract_number
|
470
|
|
- *
|
471
|
|
- * @mbggenerated Wed Jul 08 09:57:43 CST 2020
|
|
541
|
+ * 协议编号/合同编号
|
472
|
542
|
*/
|
473
|
543
|
public String getContractNumber() {
|
474
|
544
|
return contractNumber;
|
475
|
545
|
}
|
476
|
546
|
|
477
|
547
|
/**
|
478
|
|
- * This method was generated by MyBatis Generator.
|
479
|
|
- * This method sets the value of the database column business_notice_receive.contract_number
|
480
|
|
- *
|
481
|
|
- * @param contractNumber the value for business_notice_receive.contract_number
|
482
|
|
- *
|
483
|
|
- * @mbggenerated Wed Jul 08 09:57:43 CST 2020
|
|
548
|
+ * 协议编号/合同编号
|
|
549
|
+ * @param contractNumber 协议编号/合同编号
|
484
|
550
|
*/
|
485
|
551
|
public void setContractNumber(String contractNumber) {
|
486
|
552
|
this.contractNumber = contractNumber == null ? null : contractNumber.trim();
|
487
|
553
|
}
|
488
|
554
|
|
489
|
555
|
/**
|
490
|
|
- * This method was generated by MyBatis Generator.
|
491
|
|
- * This method returns the value of the database column business_notice_receive.ywtype
|
492
|
|
- *
|
493
|
|
- * @return the value of business_notice_receive.ywtype
|
494
|
|
- *
|
495
|
|
- * @mbggenerated Wed Jul 08 09:57:43 CST 2020
|
|
556
|
+ * 业务类型 (6:竞买=入库竞价;7:销售=出库竞价 4:轮换=出库包干)
|
496
|
557
|
*/
|
497
|
558
|
public String getYwtype() {
|
498
|
559
|
return ywtype;
|
499
|
560
|
}
|
500
|
561
|
|
501
|
562
|
/**
|
502
|
|
- * This method was generated by MyBatis Generator.
|
503
|
|
- * This method sets the value of the database column business_notice_receive.ywtype
|
504
|
|
- *
|
505
|
|
- * @param ywtype the value for business_notice_receive.ywtype
|
506
|
|
- *
|
507
|
|
- * @mbggenerated Wed Jul 08 09:57:43 CST 2020
|
|
563
|
+ * 业务类型 (6:竞买=入库竞价;7:销售=出库竞价 4:轮换=出库包干)
|
|
564
|
+ * @param ywtype
|
508
|
565
|
*/
|
509
|
566
|
public void setYwtype(String ywtype) {
|
510
|
567
|
this.ywtype = ywtype == null ? null : ywtype.trim();
|
511
|
568
|
}
|
512
|
569
|
|
513
|
570
|
/**
|
514
|
|
- * This method was generated by MyBatis Generator.
|
515
|
|
- * This method returns the value of the database column business_notice_receive.house_id
|
516
|
|
- *
|
517
|
|
- * @return the value of business_notice_receive.house_id
|
518
|
|
- *
|
519
|
|
- * @mbggenerated Wed Jul 08 09:57:43 CST 2020
|
|
571
|
+ * 仓房
|
520
|
572
|
*/
|
521
|
573
|
public Integer getHouseId() {
|
522
|
574
|
return houseId;
|
523
|
575
|
}
|
524
|
576
|
|
525
|
577
|
/**
|
526
|
|
- * This method was generated by MyBatis Generator.
|
527
|
|
- * This method sets the value of the database column business_notice_receive.house_id
|
528
|
|
- *
|
529
|
|
- * @param houseId the value for business_notice_receive.house_id
|
530
|
|
- *
|
531
|
|
- * @mbggenerated Wed Jul 08 09:57:43 CST 2020
|
|
578
|
+ * 仓房
|
|
579
|
+ * @param houseId 仓房
|
532
|
580
|
*/
|
533
|
581
|
public void setHouseId(Integer houseId) {
|
534
|
582
|
this.houseId = houseId;
|
|
@@ -547,36 +595,24 @@ public class BusinessNoticeReceive {
|
547
|
595
|
}
|
548
|
596
|
|
549
|
597
|
/**
|
550
|
|
- * This method was generated by MyBatis Generator.
|
551
|
|
- * This method sets the value of the database column business_notice_receive.ware_house_id
|
552
|
|
- *
|
553
|
|
- * @param wareHouseId the value for business_notice_receive.ware_house_id
|
554
|
|
- *
|
555
|
|
- * @mbggenerated Wed Jul 08 09:57:43 CST 2020
|
|
598
|
+ * 货位
|
|
599
|
+ * @param wareHouseId 货位
|
556
|
600
|
*/
|
557
|
601
|
public void setWareHouseId(Integer wareHouseId) {
|
558
|
602
|
this.wareHouseId = wareHouseId;
|
559
|
603
|
}
|
560
|
604
|
|
561
|
605
|
/**
|
562
|
|
- * This method was generated by MyBatis Generator.
|
563
|
|
- * This method returns the value of the database column business_notice_receive.grain_kind
|
564
|
|
- *
|
565
|
|
- * @return the value of business_notice_receive.grain_kind
|
566
|
|
- *
|
567
|
|
- * @mbggenerated Wed Jul 08 09:57:43 CST 2020
|
|
606
|
+ * 粮食品种
|
|
607
|
+ * @return
|
568
|
608
|
*/
|
569
|
609
|
public Integer getGrainKind() {
|
570
|
610
|
return grainKind;
|
571
|
611
|
}
|
572
|
612
|
|
573
|
613
|
/**
|
574
|
|
- * This method was generated by MyBatis Generator.
|
575
|
|
- * This method sets the value of the database column business_notice_receive.grain_kind
|
576
|
|
- *
|
577
|
|
- * @param grainKind the value for business_notice_receive.grain_kind
|
578
|
|
- *
|
579
|
|
- * @mbggenerated Wed Jul 08 09:57:43 CST 2020
|
|
614
|
+ * 粮食品种
|
|
615
|
+ * @param grainKind 粮食品种
|
580
|
616
|
*/
|
581
|
617
|
public void setGrainKind(Integer grainKind) {
|
582
|
618
|
this.grainKind = grainKind;
|
|
@@ -607,96 +643,62 @@ public class BusinessNoticeReceive {
|
607
|
643
|
}
|
608
|
644
|
|
609
|
645
|
/**
|
610
|
|
- * This method was generated by MyBatis Generator.
|
611
|
|
- * This method returns the value of the database column business_notice_receive.count
|
612
|
|
- *
|
613
|
|
- * @return the value of business_notice_receive.count
|
614
|
|
- *
|
615
|
|
- * @mbggenerated Wed Jul 08 09:57:43 CST 2020
|
|
646
|
+ * 计划数量(吨)
|
|
647
|
+ * @return
|
616
|
648
|
*/
|
617
|
649
|
public String getCount() {
|
618
|
650
|
return count;
|
619
|
651
|
}
|
620
|
652
|
|
621
|
653
|
/**
|
622
|
|
- * This method was generated by MyBatis Generator.
|
623
|
|
- * This method sets the value of the database column business_notice_receive.count
|
624
|
|
- *
|
625
|
|
- * @param count the value for business_notice_receive.count
|
626
|
|
- *
|
627
|
|
- * @mbggenerated Wed Jul 08 09:57:43 CST 2020
|
|
654
|
+ * 计划数量(吨)
|
|
655
|
+ * @param count
|
628
|
656
|
*/
|
629
|
657
|
public void setCount(String count) {
|
630
|
658
|
this.count = count == null ? null : count.trim();
|
631
|
659
|
}
|
632
|
660
|
|
633
|
661
|
/**
|
634
|
|
- * This method was generated by MyBatis Generator.
|
635
|
|
- * This method returns the value of the database column business_notice_receive.outgoing_period
|
636
|
|
- *
|
637
|
|
- * @return the value of business_notice_receive.outgoing_period
|
638
|
|
- *
|
639
|
|
- * @mbggenerated Wed Jul 08 09:57:43 CST 2020
|
|
662
|
+ * 出库期限(日期格式)
|
|
663
|
+ * @return
|
640
|
664
|
*/
|
641
|
665
|
public String getOutgoingPeriod() {
|
642
|
666
|
return outgoingPeriod;
|
643
|
667
|
}
|
644
|
668
|
|
645
|
669
|
/**
|
646
|
|
- * This method was generated by MyBatis Generator.
|
647
|
|
- * This method sets the value of the database column business_notice_receive.outgoing_period
|
648
|
|
- *
|
649
|
|
- * @param outgoingPeriod the value for business_notice_receive.outgoing_period
|
650
|
|
- *
|
651
|
|
- * @mbggenerated Wed Jul 08 09:57:43 CST 2020
|
|
670
|
+ * 出库期限(日期格式)
|
|
671
|
+ * @param outgoingPeriod
|
652
|
672
|
*/
|
653
|
673
|
public void setOutgoingPeriod(String outgoingPeriod) {
|
654
|
674
|
this.outgoingPeriod = outgoingPeriod == null ? null : outgoingPeriod.trim();
|
655
|
675
|
}
|
656
|
676
|
|
657
|
677
|
/**
|
658
|
|
- * This method was generated by MyBatis Generator.
|
659
|
|
- * This method returns the value of the database column business_notice_receive.forwarding_unit
|
660
|
|
- *
|
661
|
|
- * @return the value of business_notice_receive.forwarding_unit
|
662
|
|
- *
|
663
|
|
- * @mbggenerated Wed Jul 08 09:57:43 CST 2020
|
|
678
|
+ * 发货单位
|
664
|
679
|
*/
|
665
|
680
|
public String getForwardingUnit() {
|
666
|
681
|
return forwardingUnit;
|
667
|
682
|
}
|
668
|
683
|
|
669
|
684
|
/**
|
670
|
|
- * This method was generated by MyBatis Generator.
|
671
|
|
- * This method sets the value of the database column business_notice_receive.forwarding_unit
|
672
|
|
- *
|
673
|
|
- * @param forwardingUnit the value for business_notice_receive.forwarding_unit
|
674
|
|
- *
|
675
|
|
- * @mbggenerated Wed Jul 08 09:57:43 CST 2020
|
|
685
|
+ * 发货单位
|
|
686
|
+ * @param forwardingUnit
|
676
|
687
|
*/
|
677
|
688
|
public void setForwardingUnit(String forwardingUnit) {
|
678
|
689
|
this.forwardingUnit = forwardingUnit == null ? null : forwardingUnit.trim();
|
679
|
690
|
}
|
680
|
691
|
|
681
|
692
|
/**
|
682
|
|
- * This method was generated by MyBatis Generator.
|
683
|
|
- * This method returns the value of the database column business_notice_receive.receive_unit
|
684
|
|
- *
|
685
|
|
- * @return the value of business_notice_receive.receive_unit
|
686
|
|
- *
|
687
|
|
- * @mbggenerated Wed Jul 08 09:57:43 CST 2020
|
|
693
|
+ * 收货单位
|
688
|
694
|
*/
|
689
|
695
|
public String getReceiveUnit() {
|
690
|
696
|
return receiveUnit;
|
691
|
697
|
}
|
692
|
698
|
|
693
|
699
|
/**
|
694
|
|
- * This method was generated by MyBatis Generator.
|
695
|
|
- * This method sets the value of the database column business_notice_receive.receive_unit
|
696
|
|
- *
|
697
|
|
- * @param receiveUnit the value for business_notice_receive.receive_unit
|
698
|
|
- *
|
699
|
|
- * @mbggenerated Wed Jul 08 09:57:43 CST 2020
|
|
700
|
+ * 收货单位
|
|
701
|
+ * @param receiveUnit 收货单位
|
700
|
702
|
*/
|
701
|
703
|
public void setReceiveUnit(String receiveUnit) {
|
702
|
704
|
this.receiveUnit = receiveUnit == null ? null : receiveUnit.trim();
|
|
@@ -727,122 +729,97 @@ public class BusinessNoticeReceive {
|
727
|
729
|
}
|
728
|
730
|
|
729
|
731
|
/**
|
730
|
|
- * This method was generated by MyBatis Generator.
|
731
|
|
- * This method returns the value of the database column business_notice_receive.in_application
|
732
|
|
- *
|
733
|
|
- * @return the value of business_notice_receive.in_application
|
734
|
|
- *
|
735
|
|
- * @mbggenerated Wed Jul 08 09:57:43 CST 2020
|
|
732
|
+ * 启用(默认1,其实不用)
|
|
733
|
+ * @return
|
736
|
734
|
*/
|
737
|
735
|
public Integer getInApplication() {
|
738
|
736
|
return inApplication;
|
739
|
737
|
}
|
740
|
738
|
|
741
|
739
|
/**
|
742
|
|
- * This method was generated by MyBatis Generator.
|
743
|
|
- * This method sets the value of the database column business_notice_receive.in_application
|
744
|
|
- *
|
745
|
|
- * @param inApplication the value for business_notice_receive.in_application
|
746
|
|
- *
|
747
|
|
- * @mbggenerated Wed Jul 08 09:57:43 CST 2020
|
|
740
|
+ * 启用(默认1,其实不用)
|
|
741
|
+ * @param inApplication
|
748
|
742
|
*/
|
749
|
743
|
public void setInApplication(Integer inApplication) {
|
750
|
744
|
this.inApplication = inApplication;
|
751
|
745
|
}
|
752
|
746
|
|
753
|
747
|
/**
|
754
|
|
- * This method was generated by MyBatis Generator.
|
755
|
|
- * This method returns the value of the database column business_notice_receive.org_id
|
756
|
|
- *
|
757
|
|
- * @return the value of business_notice_receive.org_id
|
758
|
|
- *
|
759
|
|
- * @mbggenerated Wed Jul 08 09:57:43 CST 2020
|
|
748
|
+ * 组织机构id
|
760
|
749
|
*/
|
761
|
750
|
public Integer getOrgId() {
|
762
|
751
|
return orgId;
|
763
|
752
|
}
|
764
|
753
|
|
765
|
754
|
/**
|
766
|
|
- * This method was generated by MyBatis Generator.
|
767
|
|
- * This method sets the value of the database column business_notice_receive.org_id
|
768
|
|
- *
|
769
|
|
- * @param orgId the value for business_notice_receive.org_id
|
770
|
|
- *
|
771
|
|
- * @mbggenerated Wed Jul 08 09:57:43 CST 2020
|
|
755
|
+ * 组织机构id
|
|
756
|
+ * @param orgId 组织机构id
|
772
|
757
|
*/
|
773
|
758
|
public void setOrgId(Integer orgId) {
|
774
|
759
|
this.orgId = orgId;
|
775
|
760
|
}
|
776
|
761
|
|
777
|
762
|
/**
|
778
|
|
- * This method was generated by MyBatis Generator.
|
779
|
|
- * This method returns the value of the database column business_notice_receive.grain_attribute
|
780
|
|
- *
|
781
|
|
- * @return the value of business_notice_receive.grain_attribute
|
782
|
|
- *
|
783
|
|
- * @mbggenerated Wed Jul 08 09:57:43 CST 2020
|
|
763
|
+ * 粮油性质
|
|
764
|
+ * @return
|
784
|
765
|
*/
|
785
|
766
|
public Integer getGrainAttribute() {
|
786
|
767
|
return grainAttribute;
|
787
|
768
|
}
|
788
|
769
|
|
789
|
770
|
/**
|
790
|
|
- * This method was generated by MyBatis Generator.
|
791
|
|
- * This method sets the value of the database column business_notice_receive.grain_attribute
|
792
|
|
- *
|
793
|
|
- * @param grainAttribute the value for business_notice_receive.grain_attribute
|
794
|
|
- *
|
795
|
|
- * @mbggenerated Wed Jul 08 09:57:43 CST 2020
|
|
771
|
+ * 粮油性质
|
|
772
|
+ * @param grainAttribute
|
796
|
773
|
*/
|
797
|
774
|
public void setGrainAttribute(Integer grainAttribute) {
|
798
|
775
|
this.grainAttribute = grainAttribute;
|
799
|
776
|
}
|
800
|
777
|
|
801
|
778
|
/**
|
802
|
|
- * This method was generated by MyBatis Generator.
|
803
|
|
- * This method returns the value of the database column business_notice_receive.grain_detail_kind
|
804
|
|
- *
|
805
|
|
- * @return the value of business_notice_receive.grain_detail_kind
|
806
|
|
- *
|
807
|
|
- * @mbggenerated Wed Jul 08 09:57:43 CST 2020
|
|
779
|
+ * 明细品种
|
|
780
|
+ * @return
|
808
|
781
|
*/
|
809
|
782
|
public Integer getGrainDetailKind() {
|
810
|
783
|
return grainDetailKind;
|
811
|
784
|
}
|
812
|
785
|
|
813
|
786
|
/**
|
814
|
|
- * This method was generated by MyBatis Generator.
|
815
|
|
- * This method sets the value of the database column business_notice_receive.grain_detail_kind
|
816
|
|
- *
|
817
|
|
- * @param grainDetailKind the value for business_notice_receive.grain_detail_kind
|
818
|
|
- *
|
819
|
|
- * @mbggenerated Wed Jul 08 09:57:43 CST 2020
|
|
787
|
+ * 明细品种
|
|
788
|
+ * @param grainDetailKind
|
820
|
789
|
*/
|
821
|
790
|
public void setGrainDetailKind(Integer grainDetailKind) {
|
822
|
791
|
this.grainDetailKind = grainDetailKind;
|
823
|
792
|
}
|
824
|
793
|
|
825
|
794
|
/**
|
826
|
|
- * This method was generated by MyBatis Generator.
|
827
|
|
- * This method returns the value of the database column business_notice_receive.receive_time
|
828
|
|
- *
|
829
|
|
- * @return the value of business_notice_receive.receive_time
|
830
|
|
- *
|
831
|
|
- * @mbggenerated Wed Jul 08 09:57:43 CST 2020
|
|
795
|
+ * 接收数据的时间
|
|
796
|
+ * @return
|
832
|
797
|
*/
|
833
|
798
|
public Date getReceiveTime() {
|
834
|
799
|
return receiveTime;
|
835
|
800
|
}
|
836
|
801
|
|
837
|
802
|
/**
|
838
|
|
- * This method was generated by MyBatis Generator.
|
839
|
|
- * This method sets the value of the database column business_notice_receive.receive_time
|
840
|
|
- *
|
841
|
|
- * @param receiveTime the value for business_notice_receive.receive_time
|
842
|
|
- *
|
843
|
|
- * @mbggenerated Wed Jul 08 09:57:43 CST 2020
|
|
803
|
+ * 接收数据的时间
|
|
804
|
+ * @param receiveTime
|
844
|
805
|
*/
|
845
|
806
|
public void setReceiveTime(Date receiveTime) {
|
846
|
807
|
this.receiveTime = receiveTime;
|
847
|
808
|
}
|
|
809
|
+
|
|
810
|
+ /**
|
|
811
|
+ * 合同编号(包干类型使用)
|
|
812
|
+ * @return
|
|
813
|
+ */
|
|
814
|
+ public String getHtbh() {
|
|
815
|
+ return htbh;
|
|
816
|
+ }
|
|
817
|
+
|
|
818
|
+ /**
|
|
819
|
+ * 合同编号(包干类型使用)
|
|
820
|
+ * @param htbh
|
|
821
|
+ */
|
|
822
|
+ public void setHtbh(String htbh) {
|
|
823
|
+ this.htbh = htbh;
|
|
824
|
+ }
|
848
|
825
|
}
|