Blame view

src/main/java/com/huaheng/api/mes/dto/Header.java 3.34 KB
hh authored
1
2
package com.huaheng.api.mes.dto;
hh authored
3
import com.baomidou.mybatisplus.annotation.TableField;
hh authored
4
5
import io.swagger.annotations.ApiModelProperty;
hh authored
6
import java.math.BigDecimal;
7
import java.util.Date;
hh authored
8
hh authored
9
10
public class Header {
hh authored
11
12
13
    @ApiModelProperty(value="id")
    private Integer id;
hh authored
14
15
16
    @ApiModelProperty(value="MOMID")
    private String MOMID;
hh authored
17
18
19
    /**
     * 入库单 单号
     */
hh authored
20
21
22
    @ApiModelProperty(value="MES单据单号")
    private String referCode;
hh authored
23
24
25
    /**
     * 入库单 单据类型 (用于区分入库和外协入库)
     */
hh authored
26
27
28
    @ApiModelProperty(value="MES单据类型")
    private String refeCodeType;
hh authored
29
30
31
    @ApiModelProperty(value="总数量")
    private BigDecimal totalQty;
hh authored
32
33
34
35
36
37
38
    /**
     * MOM目标类型
     */
    @ApiModelProperty(value="MOM目标类型")
    private String TAID;

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

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

    /**
     * 母件编码
     */
    @ApiModelProperty(value = "母件编码")
    private String superiorCode;

    /**
57
58
59
60
61
62
     * MOM来源类型
     */
    @ApiModelProperty(value="MOM来源类型")
    private String FAID;

    /**
hh authored
63
64
65
66
67
     * 母件名称
     */
    @ApiModelProperty(value = "母件名称")
    private String superiorName;
68
69
70
71
72
73
74
75
76
77
78
79
80
81
    /**
     * 要求到货时间
     */
    @ApiModelProperty(value = "计划完成日期")
    private Date requestedDeliveryDate;

    public Date getRequestedDeliveryDate() {
        return requestedDeliveryDate;
    }

    public void setRequestedDeliveryDate(Date requestedDeliveryDate) {
        this.requestedDeliveryDate = requestedDeliveryDate;
    }
82
83
84
    public Integer getId() {
        return id;
    }
hh authored
85
86
87
    public void setId(Integer id) {
        this.id = id;
hh authored
88
89
    }
90
91
    public String getMOMID() {
        return MOMID;
hh authored
92
93
    }
94
95
    public void setMOMID(String MOMID) {
        this.MOMID = MOMID;
hh authored
96
97
    }
98
99
    public String getReferCode() {
        return referCode;
hh authored
100
101
    }
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
    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
121
122
123
124
125

    public String getTAID() {
        return TAID;
    }
126
127
    public void setTAID(String TAID) {
        this.TAID = TAID;
hh authored
128
129
    }
130
131
132
    public String getWorkshop() {
        return workshop;
    }
hh authored
133
134
135
    public void setWorkshop(String workshop) {
        this.workshop = workshop;
hh authored
136
137
    }
138
139
    public String getWarehouse() {
        return warehouse;
hh authored
140
141
    }
142
143
    public void setWarehouse(String warehouse) {
        this.warehouse = warehouse;
hh authored
144
145
    }
146
147
    public String getSuperiorCode() {
        return superiorCode;
hh authored
148
149
    }
150
151
    public void setSuperiorCode(String superiorCode) {
        this.superiorCode = superiorCode;
hh authored
152
153
    }
154
155
156
157
158
159
160
161
162
163
    public String getFAID() {
        return FAID;
    }

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

    public String getSuperiorName() {
        return superiorName;
hh authored
164
165
    }
166
167
168
    public void setSuperiorName(String superiorName) {
        this.superiorName = superiorName;
    }
hh authored
169
}