春风项目四线(合箱线、总装线)
2
cl
2024-01-13 c2272a6fd7d8a6142bc9b0b1bdb4c715c66a865c
提交 | 用户 | 时间
d9cf6b 1 package com.jcdm.main.bs.orderScheduling.domain;
J 2
3 import org.apache.commons.lang3.builder.ToStringBuilder;
4 import org.apache.commons.lang3.builder.ToStringStyle;
5 import com.jcdm.common.annotation.Excel;
6 import com.jcdm.common.core.domain.BaseEntity;
7
8 /**
9  * 订单排产对象 bs_order_scheduling
10  * 
11  * @author jiang
12  * @date 2024-01-09
13  */
14 public class BsOrderScheduling extends BaseEntity
15 {
16     private static final long serialVersionUID = 1L;
17
18     /** 订单编号 */
19     @Excel(name = "订单编号")
20     private String orderNumber;
21
22     /** 发动机号 */
23     @Excel(name = "发动机号")
24     private String engineNo;
25
26     /** 产品类型 */
27     @Excel(name = "产品类型")
28     private String productType;
29
30     /** 机型 */
31     @Excel(name = "机型")
32     private String model;
33
34     /** 生产状态 */
35     @Excel(name = "生产状态")
36     private String productionStatus;
37
38     /** 工时 */
39     @Excel(name = "工时")
40     private String workingHours;
41
42     /** 当前工位 */
43     @Excel(name = "当前工位")
44     private String currentWorkstation;
45
46     /** 质量状态 */
47     @Excel(name = "质量状态")
48     private String qualityStatus;
49
50     /** 是否打印 */
51     @Excel(name = "是否打印")
52     private String whetherOrPrint;
53
54     /** 10报工 */
55     @Excel(name = "10报工")
56     private String report10;
57
58     /** 20报工 */
59     @Excel(name = "20报工")
60     private String report20;
61
62     /** 合箱上线 */
63     @Excel(name = "合箱上线")
64     private String combinedBoxLaunch;
65
66     /** 总装下线 */
67     @Excel(name = "总装下线")
68     private String finalAssemblyOffline;
69
70     /** 操作人 */
71     @Excel(name = "操作人")
72     private String operator;
73
74     /** 操作时间 */
75     @Excel(name = "操作时间")
76     private String operateTime;
77
78     public void setOrderNumber(String orderNumber) 
79     {
80         this.orderNumber = orderNumber;
81     }
82
83     public String getOrderNumber() 
84     {
85         return orderNumber;
86     }
87     public void setEngineNo(String engineNo) 
88     {
89         this.engineNo = engineNo;
90     }
91
92     public String getEngineNo() 
93     {
94         return engineNo;
95     }
96     public void setProductType(String productType) 
97     {
98         this.productType = productType;
99     }
100
101     public String getProductType() 
102     {
103         return productType;
104     }
105     public void setModel(String model) 
106     {
107         this.model = model;
108     }
109
110     public String getModel() 
111     {
112         return model;
113     }
114     public void setProductionStatus(String productionStatus) 
115     {
116         this.productionStatus = productionStatus;
117     }
118
119     public String getProductionStatus() 
120     {
121         return productionStatus;
122     }
123     public void setWorkingHours(String workingHours) 
124     {
125         this.workingHours = workingHours;
126     }
127
128     public String getWorkingHours() 
129     {
130         return workingHours;
131     }
132     public void setCurrentWorkstation(String currentWorkstation) 
133     {
134         this.currentWorkstation = currentWorkstation;
135     }
136
137     public String getCurrentWorkstation() 
138     {
139         return currentWorkstation;
140     }
141     public void setQualityStatus(String qualityStatus) 
142     {
143         this.qualityStatus = qualityStatus;
144     }
145
146     public String getQualityStatus() 
147     {
148         return qualityStatus;
149     }
150     public void setWhetherOrPrint(String whetherOrPrint) 
151     {
152         this.whetherOrPrint = whetherOrPrint;
153     }
154
155     public String getWhetherOrPrint() 
156     {
157         return whetherOrPrint;
158     }
159     public void setReport10(String report10) 
160     {
161         this.report10 = report10;
162     }
163
164     public String getReport10() 
165     {
166         return report10;
167     }
168     public void setReport20(String report20) 
169     {
170         this.report20 = report20;
171     }
172
173     public String getReport20() 
174     {
175         return report20;
176     }
177     public void setCombinedBoxLaunch(String combinedBoxLaunch) 
178     {
179         this.combinedBoxLaunch = combinedBoxLaunch;
180     }
181
182     public String getCombinedBoxLaunch() 
183     {
184         return combinedBoxLaunch;
185     }
186     public void setFinalAssemblyOffline(String finalAssemblyOffline) 
187     {
188         this.finalAssemblyOffline = finalAssemblyOffline;
189     }
190
191     public String getFinalAssemblyOffline() 
192     {
193         return finalAssemblyOffline;
194     }
195     public void setOperator(String operator) 
196     {
197         this.operator = operator;
198     }
199
200     public String getOperator() 
201     {
202         return operator;
203     }
204     public void setOperateTime(String operateTime) 
205     {
206         this.operateTime = operateTime;
207     }
208
209     public String getOperateTime() 
210     {
211         return operateTime;
212     }
213
214     @Override
215     public String toString() {
216         return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
217             .append("orderNumber", getOrderNumber())
218             .append("engineNo", getEngineNo())
219             .append("productType", getProductType())
220             .append("model", getModel())
221             .append("productionStatus", getProductionStatus())
222             .append("workingHours", getWorkingHours())
223             .append("currentWorkstation", getCurrentWorkstation())
224             .append("qualityStatus", getQualityStatus())
225             .append("whetherOrPrint", getWhetherOrPrint())
226             .append("report10", getReport10())
227             .append("report20", getReport20())
228             .append("combinedBoxLaunch", getCombinedBoxLaunch())
229             .append("finalAssemblyOffline", getFinalAssemblyOffline())
230             .append("operator", getOperator())
231             .append("operateTime", getOperateTime())
232             .toString();
233     }
234 }