Header.java
4.39 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
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
package com.huaheng.api.mes.dto;
import com.baomidou.mybatisplus.annotation.TableField;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.math.BigDecimal;
import java.util.Date;
@Data
public class Header {
@ApiModelProperty(value="id")
private Integer id;
@ApiModelProperty(value="MOMID")
private String MOMID;
/**
* 入库单 单号
*/
@ApiModelProperty(value="MES单据单号")
private String referCode;
/**
* 入库单 单据类型 (用于区分入库和外协入库)
*/
@ApiModelProperty(value="MES单据类型")
private String refeCodeType;
@ApiModelProperty(value="总数量")
private BigDecimal totalQty;
/**
* MOM目标类型
*/
@ApiModelProperty(value="MOM目标类型")
private String TAID;
/**
* 生产车间
*/
@ApiModelProperty(value = "生产车间")
private String workshop;
/**
* 仓库
*/
@ApiModelProperty(value = "仓库")
private String warehouse;
/**
* 仓库名称
*/
@ApiModelProperty(value = "仓库名称")
private String warehouseName;
/**
* 母件编码
*/
@ApiModelProperty(value = "母件编码")
private String superiorCode;
/**
* MOM来源类型
*/
@ApiModelProperty(value="MOM来源类型")
private String FAID;
/**
* 母件名称
*/
@ApiModelProperty(value = "母件名称")
private String superiorName;
/**
* 计划开工日期
*/
@ApiModelProperty(value = "计划开工日期")
private Date requestedStartDate;
/**
* 要求到货时间
*/
@ApiModelProperty(value = "计划完成日期")
private Date requestedDeliveryDate;
/**
* 报工人
*/
@ApiModelProperty(value = "报工人")
private String productionWorker;
/**
* 报工人名称
*/
@ApiModelProperty(value = "报工人名称")
private String productionWorkerName;
/**
* 制单人编码
*/
@ApiModelProperty(value = "制单人编码")
private String creatorCode;
/**
* 制单人名称
*/
@ApiModelProperty(value = "制单人名称")
private String creatorName;
/**
* 出库单备注
*/
@ApiModelProperty(value = "出库单备注")
private String shipmentNote;
public String getProductionWorker() {
return productionWorker;
}
public void setProductionWorker(String productionWorker) {
this.productionWorker = productionWorker;
}
public Date getRequestedDeliveryDate() {
return requestedDeliveryDate;
}
public void setRequestedDeliveryDate(Date requestedDeliveryDate) {
this.requestedDeliveryDate = requestedDeliveryDate;
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getMOMID() {
return MOMID;
}
public void setMOMID(String MOMID) {
this.MOMID = MOMID;
}
public String getReferCode() {
return referCode;
}
public void setReferCode(String referCode) {
this.referCode = referCode;
}
public String getRefeCodeType() {
return refeCodeType;
}
public void setRefeCodeType(String refeCodeType) {
this.refeCodeType = refeCodeType;
}
public BigDecimal getTotalQty() {
return totalQty;
}
public void setTotalQty(BigDecimal totalQty) {
this.totalQty = totalQty;
}
public String getTAID() {
return TAID;
}
public void setTAID(String TAID) {
this.TAID = TAID;
}
public String getWorkshop() {
return workshop;
}
public void setWorkshop(String workshop) {
this.workshop = workshop;
}
public String getWarehouse() {
return warehouse;
}
public void setWarehouse(String warehouse) {
this.warehouse = warehouse;
}
public String getSuperiorCode() {
return superiorCode;
}
public void setSuperiorCode(String superiorCode) {
this.superiorCode = superiorCode;
}
public String getFAID() {
return FAID;
}
public void setFAID(String FAID) {
this.FAID = FAID;
}
public String getSuperiorName() {
return superiorName;
}
public void setSuperiorName(String superiorName) {
this.superiorName = superiorName;
}
}