DailyCheck.java
2.3 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
package com.xiniunet.lecunstomization.domain;
import com.xiniunet.framework.base.BaseDomain;
/**
* Created by Administrator on 2016/10/9.
*/
public class DailyCheck extends BaseDomain {
/**
* erp发货数量
*/
private Long erpShipmentNumber;
/**
* 出货单和拣货单
*/
private Long outBoundAndPick;
/**
* taobao与erp 物料映射
*/
private Long taobaoAndErp;
/**
* ERP和WMS
*/
private Long erpAndWms;
/**
* 保留和订单
*/
private Long allocationAndOrder;
/**
* 交易和库存
*/
private Long transationAndBalance;
/**
* 未处理出库单
*/
private Long yesterdayUnShiped;
/**
* 未处理入库单
*/
private Long unShipedInbound;
public Long getErpShipmentNumber() {
return erpShipmentNumber;
}
public void setErpShipmentNumber(Long erpShipmentNumber) {
this.erpShipmentNumber = erpShipmentNumber;
}
public Long getOutBoundAndPick() {
return outBoundAndPick;
}
public void setOutBoundAndPick(Long outBoundAndPick) {
this.outBoundAndPick = outBoundAndPick;
}
public Long getTaobaoAndErp() {
return taobaoAndErp;
}
public void setTaobaoAndErp(Long taobaoAndErp) {
this.taobaoAndErp = taobaoAndErp;
}
public Long getErpAndWms() {
return erpAndWms;
}
public void setErpAndWms(Long erpAndWms) {
this.erpAndWms = erpAndWms;
}
public Long getAllocationAndOrder() {
return allocationAndOrder;
}
public void setAllocationAndOrder(Long allocationAndOrder) {
this.allocationAndOrder = allocationAndOrder;
}
public Long getTransationAndBalance() {
return transationAndBalance;
}
public void setTransationAndBalance(Long transationAndBalance) {
this.transationAndBalance = transationAndBalance;
}
public Long getYesterdayUnShiped() {
return yesterdayUnShiped;
}
public void setYesterdayUnShiped(Long yesterdayUnShiped) {
this.yesterdayUnShiped = yesterdayUnShiped;
}
public Long getUnShipedInbound() {
return unShipedInbound;
}
public void setUnShipedInbound(Long unShipedInbound) {
this.unShipedInbound = unShipedInbound;
}
}