Blame view

src/main/java/com/huaheng/api/mes/dto/Header.java 4.98 KB
hh authored
1
2
3
package com.huaheng.api.mes.dto;

import io.swagger.annotations.ApiModelProperty;
tongzhonghao authored
4
import lombok.Data;
hh authored
5
hh authored
6
import java.math.BigDecimal;
7
import java.util.Date;
hh authored
8
tongzhonghao authored
9
@Data
hh authored
10
11
public class Header {
易文鹏 authored
12
    @ApiModelProperty(value = "id")
hh authored
13
14
    private Integer id;
易文鹏 authored
15
    @ApiModelProperty(value = "MOMID")
hh authored
16
17
    private String MOMID;
hh authored
18
19
20
    /**
     * 入库单 单号
     */
易文鹏 authored
21
    @ApiModelProperty(value = "MES单据单号")
hh authored
22
23
    private String referCode;
hh authored
24
25
26
    /**
     * 入库单 单据类型 (用于区分入库和外协入库)
     */
易文鹏 authored
27
    @ApiModelProperty(value = "MES单据类型")
hh authored
28
29
    private String refeCodeType;
易文鹏 authored
30
    @ApiModelProperty(value = "总数量")
hh authored
31
32
    private BigDecimal totalQty;
hh authored
33
34
35
    /**
     * MOM目标类型
     */
易文鹏 authored
36
    @ApiModelProperty(value = "MOM目标类型")
hh authored
37
38
39
    private String TAID;

    /**
hh authored
40
41
42
43
44
45
46
47
48
49
50
51
     * 生产车间
     */
    @ApiModelProperty(value = "生产车间")
    private String workshop;

    /**
     * 仓库
     */
    @ApiModelProperty(value = "仓库")
    private String warehouse;

    /**
tongzhonghao authored
52
53
54
55
56
57
     * 仓库名称
     */
    @ApiModelProperty(value = "仓库名称")
    private String warehouseName;

    /**
hh authored
58
59
60
61
62
63
     * 母件编码
     */
    @ApiModelProperty(value = "母件编码")
    private String superiorCode;

    /**
64
65
     * MOM来源类型
     */
易文鹏 authored
66
    @ApiModelProperty(value = "MOM来源类型")
67
68
69
    private String FAID;

    /**
hh authored
70
71
72
73
74
     * 母件名称
     */
    @ApiModelProperty(value = "母件名称")
    private String superiorName;
75
    /**
易文鹏 authored
76
77
78
79
80
81
     * 日计划导入日期
     */
    @ApiModelProperty(value = "日计划导入日期")
    private Date dailyScheduleImportDate;

    /**
tongzhonghao authored
82
83
84
85
86
87
     * 计划开工日期
     */
    @ApiModelProperty(value = "计划开工日期")
    private Date requestedStartDate;

    /**
88
89
90
91
     * 要求到货时间
     */
    @ApiModelProperty(value = "计划完成日期")
    private Date requestedDeliveryDate;
hh authored
92
93
94
95
96
    /**
     * 报工人
     */
    @ApiModelProperty(value = "报工人")
    private String productionWorker;
tongzhonghao authored
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
    /**
     * 报工人名称
     */
    @ApiModelProperty(value = "报工人名称")
    private String productionWorkerName;

    /**
     * 制单人编码
     */
    @ApiModelProperty(value = "制单人编码")
    private String creatorCode;
    /**
     * 制单人名称
     */
    @ApiModelProperty(value = "制单人名称")
    private String creatorName;
hh authored
113
114
115
116
117
118
119
    /**
     * 出库单备注
     */
    @ApiModelProperty(value = "出库单备注")
    private String shipmentNote;
120
    /**
易文鹏 authored
121
     * 调入仓库名称
122
     */
易文鹏 authored
123
124
    @ApiModelProperty(value = "调入仓库名称")
    private String transferWarehouseName;
125
易文鹏 authored
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
    /**
     * 调入仓库编码
     */
    @ApiModelProperty(value = "调入仓库编码")
    private String transferWarehouseCode;


    /**
     * 删除人
     */
    @ApiModelProperty(value = "删除人")
    private String delete;


    /**
     * 删除人工号
     */
    @ApiModelProperty(value = "删除人工号")
    private String deleteCode;
145
146
hh authored
147
148
149
150
151
152
153
    public String getProductionWorker() {
        return productionWorker;
    }

    public void setProductionWorker(String productionWorker) {
        this.productionWorker = productionWorker;
    }
154
155
156
157
158
159
160
161
162

    public Date getRequestedDeliveryDate() {
        return requestedDeliveryDate;
    }

    public void setRequestedDeliveryDate(Date requestedDeliveryDate) {
        this.requestedDeliveryDate = requestedDeliveryDate;
    }
163
164
165
    public Integer getId() {
        return id;
    }
hh authored
166
167
168
    public void setId(Integer id) {
        this.id = id;
hh authored
169
170
    }
171
172
    public String getMOMID() {
        return MOMID;
hh authored
173
174
    }
175
176
    public void setMOMID(String MOMID) {
        this.MOMID = MOMID;
hh authored
177
178
    }
179
180
    public String getReferCode() {
        return referCode;
hh authored
181
182
    }
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
    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;
    }
hh authored
202
203
204
205
206

    public String getTAID() {
        return TAID;
    }
207
208
    public void setTAID(String TAID) {
        this.TAID = TAID;
hh authored
209
210
    }
211
212
213
    public String getWorkshop() {
        return workshop;
    }
hh authored
214
215
216
    public void setWorkshop(String workshop) {
        this.workshop = workshop;
hh authored
217
218
    }
219
220
    public String getWarehouse() {
        return warehouse;
hh authored
221
222
    }
223
224
    public void setWarehouse(String warehouse) {
        this.warehouse = warehouse;
hh authored
225
226
    }
227
228
    public String getSuperiorCode() {
        return superiorCode;
hh authored
229
230
    }
231
232
    public void setSuperiorCode(String superiorCode) {
        this.superiorCode = superiorCode;
hh authored
233
234
    }
235
236
237
238
239
240
241
242
243
244
    public String getFAID() {
        return FAID;
    }

    public void setFAID(String FAID) {
        this.FAID = FAID;
    }

    public String getSuperiorName() {
        return superiorName;
hh authored
245
246
    }
247
248
249
    public void setSuperiorName(String superiorName) {
        this.superiorName = superiorName;
    }
hh authored
250
}