春风项目四线(合箱线、总装线)
hdy
2024-01-10 e82830dc4a5b8ebff1f2cf8506c9c8ee06867760
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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
package com.jcdm.main.bs.orderScheduling.domain;
 
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.jcdm.common.annotation.Excel;
import com.jcdm.common.core.domain.BaseEntity;
 
/**
 * 订单排产对象 bs_order_scheduling
 * 
 * @author jiang
 * @date 2024-01-09
 */
public class BsOrderScheduling extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 订单编号 */
    @Excel(name = "订单编号")
    private String orderNumber;
 
    /** 发动机号 */
    @Excel(name = "发动机号")
    private String engineNo;
 
    /** 产品类型 */
    @Excel(name = "产品类型")
    private String productType;
 
    /** 机型 */
    @Excel(name = "机型")
    private String model;
 
    /** 生产状态 */
    @Excel(name = "生产状态")
    private String productionStatus;
 
    /** 工时 */
    @Excel(name = "工时")
    private String workingHours;
 
    /** 当前工位 */
    @Excel(name = "当前工位")
    private String currentWorkstation;
 
    /** 质量状态 */
    @Excel(name = "质量状态")
    private String qualityStatus;
 
    /** 是否打印 */
    @Excel(name = "是否打印")
    private String whetherOrPrint;
 
    /** 10报工 */
    @Excel(name = "10报工")
    private String report10;
 
    /** 20报工 */
    @Excel(name = "20报工")
    private String report20;
 
    /** 合箱上线 */
    @Excel(name = "合箱上线")
    private String combinedBoxLaunch;
 
    /** 总装下线 */
    @Excel(name = "总装下线")
    private String finalAssemblyOffline;
 
    /** 操作人 */
    @Excel(name = "操作人")
    private String operator;
 
    /** 操作时间 */
    @Excel(name = "操作时间")
    private String operateTime;
 
    public void setOrderNumber(String orderNumber) 
    {
        this.orderNumber = orderNumber;
    }
 
    public String getOrderNumber() 
    {
        return orderNumber;
    }
    public void setEngineNo(String engineNo) 
    {
        this.engineNo = engineNo;
    }
 
    public String getEngineNo() 
    {
        return engineNo;
    }
    public void setProductType(String productType) 
    {
        this.productType = productType;
    }
 
    public String getProductType() 
    {
        return productType;
    }
    public void setModel(String model) 
    {
        this.model = model;
    }
 
    public String getModel() 
    {
        return model;
    }
    public void setProductionStatus(String productionStatus) 
    {
        this.productionStatus = productionStatus;
    }
 
    public String getProductionStatus() 
    {
        return productionStatus;
    }
    public void setWorkingHours(String workingHours) 
    {
        this.workingHours = workingHours;
    }
 
    public String getWorkingHours() 
    {
        return workingHours;
    }
    public void setCurrentWorkstation(String currentWorkstation) 
    {
        this.currentWorkstation = currentWorkstation;
    }
 
    public String getCurrentWorkstation() 
    {
        return currentWorkstation;
    }
    public void setQualityStatus(String qualityStatus) 
    {
        this.qualityStatus = qualityStatus;
    }
 
    public String getQualityStatus() 
    {
        return qualityStatus;
    }
    public void setWhetherOrPrint(String whetherOrPrint) 
    {
        this.whetherOrPrint = whetherOrPrint;
    }
 
    public String getWhetherOrPrint() 
    {
        return whetherOrPrint;
    }
    public void setReport10(String report10) 
    {
        this.report10 = report10;
    }
 
    public String getReport10() 
    {
        return report10;
    }
    public void setReport20(String report20) 
    {
        this.report20 = report20;
    }
 
    public String getReport20() 
    {
        return report20;
    }
    public void setCombinedBoxLaunch(String combinedBoxLaunch) 
    {
        this.combinedBoxLaunch = combinedBoxLaunch;
    }
 
    public String getCombinedBoxLaunch() 
    {
        return combinedBoxLaunch;
    }
    public void setFinalAssemblyOffline(String finalAssemblyOffline) 
    {
        this.finalAssemblyOffline = finalAssemblyOffline;
    }
 
    public String getFinalAssemblyOffline() 
    {
        return finalAssemblyOffline;
    }
    public void setOperator(String operator) 
    {
        this.operator = operator;
    }
 
    public String getOperator() 
    {
        return operator;
    }
    public void setOperateTime(String operateTime) 
    {
        this.operateTime = operateTime;
    }
 
    public String getOperateTime() 
    {
        return operateTime;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("orderNumber", getOrderNumber())
            .append("engineNo", getEngineNo())
            .append("productType", getProductType())
            .append("model", getModel())
            .append("productionStatus", getProductionStatus())
            .append("workingHours", getWorkingHours())
            .append("currentWorkstation", getCurrentWorkstation())
            .append("qualityStatus", getQualityStatus())
            .append("whetherOrPrint", getWhetherOrPrint())
            .append("report10", getReport10())
            .append("report20", getReport20())
            .append("combinedBoxLaunch", getCombinedBoxLaunch())
            .append("finalAssemblyOffline", getFinalAssemblyOffline())
            .append("operator", getOperator())
            .append("operateTime", getOperateTime())
            .toString();
    }
}