Header.java
2.96 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
package com.huaheng.api.mes.dto;
import com.baomidou.mybatisplus.annotation.TableField;
import io.swagger.annotations.ApiModelProperty;
import java.math.BigDecimal;
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 superiorCode;
/**
* MOM来源类型
*/
@ApiModelProperty(value="MOM来源类型")
private String FAID;
/**
* 母件名称
*/
@ApiModelProperty(value = "母件名称")
private String superiorName;
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;
}
}